| 110 | } |
| 111 | |
| 112 | void uae_lua_log_error(lua_State *L, const char *msg) |
| 113 | { |
| 114 | write_log("%s: %s\n", msg, lua_tostring(L, -1)); |
| 115 | //printf("%s: %s\n", msg, lua_tostring(L, -1)); |
| 116 | } |
| 117 | |
| 118 | void uae_lua_aquire_lock() |
| 119 | { |
no test coverage detected