summaryrefslogtreecommitdiff
path: root/graphics.h
diff options
context:
space:
mode:
authorrodri <rgl@antares-labs.eu>2024-08-17 12:43:58 +0000
committerrodri <rgl@antares-labs.eu>2024-08-17 12:43:58 +0000
commit5ddb9dfd5dcb7a15b03a5f338aeed5dd8953d902 (patch)
treea42afa871b860581c029eb3fe7e6dd67fd216dbf /graphics.h
parent56e8e3de24e7fea36f165b653a8efc8c38145d4c (diff)
downloadlibgraphics-5ddb9dfd5dcb7a15b03a5f338aeed5dd8953d902.tar.gz
libgraphics-5ddb9dfd5dcb7a15b03a5f338aeed5dd8953d902.tar.bz2
libgraphics-5ddb9dfd5dcb7a15b03a5f338aeed5dd8953d902.zip
correct the light types constants.
Diffstat (limited to 'graphics.h')
-rw-r--r--graphics.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics.h b/graphics.h
index 1360210..35d4d0c 100644
--- a/graphics.h
+++ b/graphics.h
@@ -17,9 +17,9 @@ enum {
PTriangle,
/* light types */
- LIGHT_POINT = 0,
- LIGHT_DIRECTIONAL,
- LIGHT_SPOT,
+ LightPoint = 0,
+ LightDirectional,
+ LightSpot,
/* texture formats */
RAWTexture = 0, /* unmanaged */