DolphinWX: Fix the video dialog crashing Dolphin on OSX
When a game was running and someone opened the video dialog, it would crash. This is because the preprocessor macro should have been __APPLE__ not _APPLE_ Fixes issue 7644.
This commit is contained in:
parent
770a9a42a5
commit
76ad89ebb6
|
@ -201,7 +201,7 @@ protected:
|
|||
label_adapter->Disable();
|
||||
}
|
||||
|
||||
#if !defined(_APPLE_)
|
||||
#ifndef __APPLE__
|
||||
// This isn't supported on OSX.
|
||||
|
||||
choice_display_resolution->Disable();
|
||||
|
|
Loading…
Reference in New Issue