Browse Source

UI: use _WIN32 instead of WIN32

_WIN32 is a compiler define so it should be used.  WIN32 is only valid
when it's defined in a header.
martell 10 years ago
parent
commit
c0827212df
1 changed files with 1 additions and 1 deletions
  1. 1 1
      obs/obs-app.cpp

+ 1 - 1
obs/obs-app.cpp

@@ -612,7 +612,7 @@ static void load_debug_privilege(void)
 
 int main(int argc, char *argv[])
 {
-#ifndef WIN32
+#ifndef _WIN32
 	signal(SIGPIPE, SIG_IGN);
 #endif