fix syntax error

ref: #2164
develop
myk002 2022-06-03 13:36:09 -07:00
parent d9addb0f24
commit a8916a269e
No known key found for this signature in database
GPG Key ID: 8A39CA0FA0C16E78
1 changed files with 2 additions and 2 deletions

@ -242,7 +242,7 @@ namespace conf_lua {
} }
int unpause(lua_State *) int unpause(lua_State *)
{ {
DEBUG(status).print("unpausing\n"), DEBUG(status).print("unpausing\n");
paused = false; paused = false;
paused_screen = NULL; paused_screen = NULL;
return 0; return 0;
@ -337,7 +337,7 @@ public:
set_state(SELECTED); set_state(SELECTED);
else if (input->count(df::interface_key::CUSTOM_P)) else if (input->count(df::interface_key::CUSTOM_P))
{ {
DEBUG(status).print("pausing\n"), DEBUG(status).print("pausing\n");
paused = true; paused = true;
// only record the screen when we're not at the top viewscreen // only record the screen when we're not at the top viewscreen
// since this screen will *always* be on the stack. for // since this screen will *always* be on the stack. for