summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorRay <[email protected]>2021-11-01 01:08:55 +0100
committerRay <[email protected]>2021-11-01 01:08:55 +0100
commit864903242862d9b738ed93ccb323d19eb0552e0a (patch)
treea616960939254fbb14ca9321aece4620ad2677cd /src
parent6e8387468ff8445339acd10d368d239540bacfa2 (diff)
downloadraylib-864903242862d9b738ed93ccb323d19eb0552e0a.tar.gz
raylib-864903242862d9b738ed93ccb323d19eb0552e0a.zip
Update comment
Diffstat (limited to 'src')
-rw-r--r--src/rcore.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/rcore.c b/src/rcore.c
index 375b2b0f..c9b86565 100644
--- a/src/rcore.c
+++ b/src/rcore.c
@@ -3709,8 +3709,8 @@ static bool InitGraphicsDevice(int width, int height)
#if defined(PLATFORM_DESKTOP) || defined(PLATFORM_WEB)
glfwSetErrorCallback(ErrorCallback);
- /*
- // Setup custom allocators to match raylib ones
+/*
+ // TODO: Setup GLFW custom allocators to match raylib ones
const GLFWallocator allocator = {
.allocate = MemAlloc,
.deallocate = MemFree,
@@ -3719,8 +3719,7 @@ static bool InitGraphicsDevice(int width, int height)
};
glfwInitAllocator(&allocator);
- */
-
+*/
#if defined(__APPLE__)
glfwInitHint(GLFW_COCOA_CHDIR_RESOURCES, GLFW_FALSE);
#endif