Fix debug level typo

develop
Myk Taylor 2023-01-28 08:20:55 -08:00
parent 65aa772a5b
commit a931ca692d
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

@ -816,8 +816,8 @@ int dfhack_lua_viewscreen::do_destroy(lua_State *L)
if (!self) return 0; if (!self) return 0;
if (!Screen::isDismissed(self)) { if (!Screen::isDismissed(self)) {
WARNING(screen).print("DFHack screen was destroyed before it was dismissed\n"); WARN(screen).print("DFHack screen was destroyed before it was dismissed\n");
WARNING(screen).print("Please tell the DFHack team which DF screen you were just viewing\n"); WARN(screen).print("Please tell the DFHack team which DF screen you were just viewing\n");
// run skipped onDismiss cleanup logic // run skipped onDismiss cleanup logic
Screen::dismiss(self); Screen::dismiss(self);
} }