mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
Silence some -Wswitch-default warnings.
This commit is contained in:
parent
54f1e3a3c1
commit
b030d29067
7 changed files with 20 additions and 17 deletions
|
@ -46,12 +46,8 @@ void Host_RefreshDSPDebuggerWindow() {}
|
|||
static Common::Event updateMainFrameEvent;
|
||||
void Host_Message(int Id)
|
||||
{
|
||||
switch (Id)
|
||||
{
|
||||
case WM_USER_STOP:
|
||||
running = false;
|
||||
break;
|
||||
}
|
||||
if (Id == WM_USER_STOP)
|
||||
running = false;
|
||||
}
|
||||
|
||||
static void* s_window_handle;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue