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:
Lioncash 2014-09-21 16:05:51 -04:00
parent 770a9a42a5
commit 76ad89ebb6
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ protected:
label_adapter->Disable();
}
#if !defined(_APPLE_)
#ifndef __APPLE__
// This isn't supported on OSX.
choice_display_resolution->Disable();