diff options
| author | Richard Smith <[email protected]> | 2021-08-26 16:31:01 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-08-26 17:31:01 +0200 |
| commit | cac856119c23898579fc237703a8ff3bda207dc6 (patch) | |
| tree | 4173a3e9162d6e4bddbfe59b6aed7bea117eaff8 /src/textures.c | |
| parent | 1286bc076f2f121b5375554c2ff26d2c1c72e0eb (diff) | |
| download | raylib-cac856119c23898579fc237703a8ff3bda207dc6.tar.gz raylib-cac856119c23898579fc237703a8ff3bda207dc6.zip | |
Change GetColor to take unsigned int (#1954)
Diffstat (limited to 'src/textures.c')
| -rw-r--r-- | src/textures.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textures.c b/src/textures.c index f8b693d6..ff55eedf 100644 --- a/src/textures.c +++ b/src/textures.c @@ -3711,7 +3711,7 @@ Color ColorAlphaBlend(Color dst, Color src, Color tint) } // Get a Color struct from hexadecimal value -Color GetColor(int hexValue) +Color GetColor(unsigned int hexValue) { Color color; |
