Removed extra macros, used PLATFORM. Also removed MACOS, as it's redundant C code that's already encapsulated within PLATFORM.

This commit is contained in:
Adam Harrison
2021-09-20 23:50:06 -04:00
parent e13529444f
commit 713ef787c2
3 changed files with 2 additions and 7 deletions
-5
View File
@@ -141,15 +141,10 @@ init_lua:
lua_pushboolean(L, true);
#ifdef __APPLE__
lua_setglobal(L, "MACOS");
enable_momentum_scroll();
#ifdef MACOS_USE_BUNDLE
set_macos_bundle_resources(L);
#endif
#elif _WIN32
lua_setglobal(L, "WINDOWS");
#else
lua_setglobal(L, "LINUX");
#endif
const char *init_lite_code = \