diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2023-11-10 21:25:40 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-10 21:25:40 +0100 |
| commit | 4345980b2509ff7d6c8237d80573dd2573b3fb50 (patch) | |
| tree | fbae1255a613619b5a2fe811fdebf962ddaa0bdf /Source/Core/InputCommon/ControllerInterface | |
| parent | 620fbcdfb70e3da0f6784c66b9d247231a28fd36 (diff) | |
| parent | 2d3bae9c7986f1c6f71f2a1c6a9c36468d0c1a40 (diff) | |
Merge pull request #12284 from Dentomologist/sdl_add_default_case_to_switch_statement
SDL: Add default case to switch statement
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp b/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp index eca311f09a..ac0123aedd 100644 --- a/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp +++ b/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp @@ -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; } |
