Fix typo in HSV/HSL classes. (#647)

Co-authored-by: 一线灵 <halx99@live.com>
This commit is contained in:
Turky Mohammed 2022-05-26 14:25:30 +03:00 committed by GitHub
parent 547b358778
commit 6943fb9dce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ struct CC_DLL HSV
bool equals(const HSV& other) const { return (*this == other); } bool equals(const HSV& other) const { return (*this == other); }
void set(float r, float f, float b, float a = 1.0F); void set(float r, float g, float b, float a = 1.0F);
void get(float& r, float& g, float& b) const; void get(float& r, float& g, float& b) const;
Color3B toColor3B(); Color3B toColor3B();