diff options
author | darkf <lw9k123@gmail.com> | 2014-11-29 06:38:20 +0100 |
---|---|---|
committer | darkf <lw9k123@gmail.com> | 2014-11-29 06:38:20 +0100 |
commit | 459502e48ccb6607e531112e7ae89f62b75023c8 (patch) | |
tree | 491c2a24f1496d4abab0d3339e559b9facc74265 /src/common/msg_handler.h | |
parent | Merge pull request #223 from linkmauve/remove-thread (diff) | |
download | yuzu-459502e48ccb6607e531112e7ae89f62b75023c8.tar yuzu-459502e48ccb6607e531112e7ae89f62b75023c8.tar.gz yuzu-459502e48ccb6607e531112e7ae89f62b75023c8.tar.bz2 yuzu-459502e48ccb6607e531112e7ae89f62b75023c8.tar.lz yuzu-459502e48ccb6607e531112e7ae89f62b75023c8.tar.xz yuzu-459502e48ccb6607e531112e7ae89f62b75023c8.tar.zst yuzu-459502e48ccb6607e531112e7ae89f62b75023c8.zip |
Diffstat (limited to '')
-rw-r--r-- | src/common/msg_handler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/msg_handler.h b/src/common/msg_handler.h index 9bfdf950e..a1db89aa3 100644 --- a/src/common/msg_handler.h +++ b/src/common/msg_handler.h @@ -30,7 +30,7 @@ extern bool MsgAlert(bool yes_no, int Style, const char* format, ...) void SetEnableAlert(bool enable); #ifndef GEKKO -#ifdef _WIN32 +#ifdef MSVC_VER #define SuccessAlert(format, ...) MsgAlert(false, INFORMATION, format, __VA_ARGS__) #define PanicAlert(format, ...) MsgAlert(false, WARNING, format, __VA_ARGS__) #define PanicYesNo(format, ...) MsgAlert(true, WARNING, format, __VA_ARGS__) |