summaryrefslogtreecommitdiffhomepage
path: root/src/rlgl.h
diff options
context:
space:
mode:
authorRay <[email protected]>2021-10-03 12:09:59 +0200
committerRay <[email protected]>2021-10-03 12:09:59 +0200
commitf869229b7ff187a5f18feb0ba82e7e80c9c98a7b (patch)
tree595a73831ab0f9aab2dd7ef34fb992d5f5d3a213 /src/rlgl.h
parent239c37246a533681953554a303e68f25b9ceba17 (diff)
downloadraylib-f869229b7ff187a5f18feb0ba82e7e80c9c98a7b.tar.gz
raylib-f869229b7ff187a5f18feb0ba82e7e80c9c98a7b.zip
Minor format tweaks
Diffstat (limited to 'src/rlgl.h')
-rw-r--r--src/rlgl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rlgl.h b/src/rlgl.h
index 3851982e..779b79f3 100644
--- a/src/rlgl.h
+++ b/src/rlgl.h
@@ -111,9 +111,9 @@
#if defined(_WIN32)
#if defined(BUILD_LIBTYPE_SHARED)
- #define RLAPI __declspec(dllexport) // We are building raylib as a Win32 shared library (.dll)
+ #define RLAPI __declspec(dllexport) // We are building rlgl as a Win32 shared library (.dll)
#elif defined(USE_LIBTYPE_SHARED)
- #define RLAPI __declspec(dllimport) // We are using raylib as a Win32 shared library (.dll)
+ #define RLAPI __declspec(dllimport) // We are using rlgl as a Win32 shared library (.dll)
#endif
#endif