mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-10 09:54:46 +02:00
BlockingLoop: fix unhandled enum value warning
Fixes compiler warning: ``` Source/Core/Common/BlockingLoop.h:212:13: warning: enumeration value 'kNonBlock' not handled in switch [-Wswitch] switch (mode) ^ ```
This commit is contained in:
@@ -211,6 +211,8 @@ public:
|
|||||||
|
|
||||||
switch (mode)
|
switch (mode)
|
||||||
{
|
{
|
||||||
|
case kNonBlock:
|
||||||
|
break;
|
||||||
case kBlock:
|
case kBlock:
|
||||||
Wait();
|
Wait();
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user