1vanK 3 years ago
parent
commit
32e9a7f3a3
1 changed files with 4 additions and 4 deletions
  1. 4 4
      Source/Urho3D/Urho3DConfig.h

+ 4 - 4
Source/Urho3D/Urho3DConfig.h

@@ -49,9 +49,9 @@
 
 // Case insensitive string comparison.
 #ifdef _WIN32
-   #define URHO_STRICMP(a,b) stricmp(a,b)
-   #define URHO_STRNICMP(a,b,n) strnicmp(a,b,n)
+    #define URHO_STRICMP(a,b) stricmp(a,b)
+    #define URHO_STRNICMP(a,b,n) strnicmp(a,b,n)
 #else
-   #define URHO_STRICMP(a,b) strcasecmp(a,b)
-   #define URHO_STRNICMP(a,b,n) strncasecmp(a,b,n)
+    #define URHO_STRICMP(a,b) strcasecmp(a,b)
+    #define URHO_STRNICMP(a,b,n) strncasecmp(a,b,n)
 #endif