Merge pull request #12284 from Dentomologist/sdl_add_default_case_to_switch_statement

SDL: Add default case to switch statement
This commit is contained in:
Admiral H. Curtiss
2023-11-10 21:25:40 +01:00
committed by GitHub

View File

@ -156,6 +156,7 @@ static void EnableSDLLogging()
log_level = Common::Log::LogLevel::LERROR;
break;
case SDL_LOG_PRIORITY_CRITICAL:
default:
log_level = Common::Log::LogLevel::LNOTICE;
break;
}