Fix mingw check in System.hx

HXCPP_MINGW does not get defined by hxcpp, so it may not always be set.
This commit is contained in:
tobil4sk
2023-04-12 16:08:09 +01:00
parent bd810c888d
commit 60aabeeff3

View File

@@ -32,9 +32,9 @@ import sys.io.Process;
@:access(lime._internal.backend.native.NativeCFFI)
@:access(lime.system.Display)
@:access(lime.system.DisplayMode)
#if (cpp && windows && !HXCPP_MINGW && !lime_disable_gpu_hint)
#if (cpp && windows && !lime_disable_gpu_hint)
@:cppFileCode('
#if defined(HX_WINDOWS)
#if defined(HX_WINDOWS) && !defined(__MINGW32__)
extern "C" {
_declspec(dllexport) unsigned long NvOptimusEnablement = 0x00000001;
_declspec(dllexport) int AmdPowerXpressRequestHighPerformance = 1;