Skip to content

Commit

Permalink
JANITORIAL: further compilation fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mgerhardy committed Nov 13, 2024
1 parent f56995f commit 14af596
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/modules/testcore/TestApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ app::AppState TestApp::onInit() {
#ifdef SDL_HINT_SHUTDOWN_DBUS_ON_QUIT
SDL_SetHint(SDL_HINT_SHUTDOWN_DBUS_ON_QUIT, "1");
#endif
_logLevelVar->setVal(core::string::toString(SDL_LOG_PRIORITY_DEBUG));
_logLevelVar->setVal((int)Log::Level::Debug);
Log::init();

video::enableDebug(video::DebugSeverity::Medium);
Expand Down
2 changes: 1 addition & 1 deletion src/tests/testimgui/TestIMGUI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ app::AppState TestIMGUI::onInit() {
if (state != app::AppState::Running) {
return state;
}
_logLevelVar->setVal(core::string::toString(SDL_LOG_PRIORITY_DEBUG));
_logLevelVar->setVal((int)Log::Level::Debug);
Log::init();

video::clearColor(::core::Color::Black());
Expand Down

0 comments on commit 14af596

Please sign in to comment.