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
commit 4345980b25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

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;
}