summaryrefslogtreecommitdiffhomepage
path: root/cmake
diff options
context:
space:
mode:
authorDaijiro Fukuda <[email protected]>2022-11-29 06:36:22 +0900
committerGitHub <[email protected]>2022-11-28 22:36:22 +0100
commit57bd84510fee9515788361b39ec4f3e3fb2cbaea (patch)
tree2f9995274f61675471fd910d505d1344c20ee533 /cmake
parent66a2cdee4026379e169faa9e45b62b7ec3025d01 (diff)
downloadraylib-57bd84510fee9515788361b39ec4f3e3fb2cbaea.tar.gz
raylib-57bd84510fee9515788361b39ec4f3e3fb2cbaea.zip
Fix wrong compile definition (#2815)
Diffstat (limited to 'cmake')
-rw-r--r--cmake/CompileDefinitions.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/CompileDefinitions.cmake b/cmake/CompileDefinitions.cmake
index 6c8d0d71..7193f5ff 100644
--- a/cmake/CompileDefinitions.cmake
+++ b/cmake/CompileDefinitions.cmake
@@ -76,7 +76,7 @@ if (${CUSTOMIZE_BUILD})
target_compile_definitions("raylib" PUBLIC "MAX_KEY_PRESSED_QUEUE=16")
target_compile_definitions("raylib" PUBLIC "STORAGE_DATA_FILE=\"storage.data\"")
- target_compile_definitions("raylib" PUBLIC "MAX_KEY_PRESSED_QUEUE=16")
+ target_compile_definitions("raylib" PUBLIC "MAX_CHAR_PRESSED_QUEUE=16")
target_compile_definitions("raylib" PUBLIC "MAX_DECOMPRESSION_SIZE=64")
if (${GRAPHICS} MATCHES "GRAPHICS_API_OPENGL_33" OR ${GRAPHICS} MATCHES "GRAPHICS_API_OPENGL_11")