boolean emu.emulating()
| 3253 | |
| 3254 | // boolean emu.emulating() |
| 3255 | int emu_emulating(lua_State *L) { |
| 3256 | lua_pushboolean(L, GameInfo != NULL); |
| 3257 | return 1; |
| 3258 | } |
| 3259 | |
| 3260 | // string movie.mode() |
| 3261 | // |
nothing calls this directly
no test coverage detected