| 4317 | } |
| 4318 | |
| 4319 | static int internal_setSuppressDuplicateKeyboardEvents(lua_State *L) { |
| 4320 | bool suppress = lua_toboolean(L, 1); |
| 4321 | Core::getInstance().setSuppressDuplicateKeyboardEvents(suppress); |
| 4322 | return 0; |
| 4323 | } |
| 4324 | |
| 4325 | static int internal_setMortalMode(lua_State *L) { |
| 4326 | bool value = lua_toboolean(L, 1); |
nothing calls this directly
no test coverage detected