Branimir Karadžić 8 anni fa
parent
commit
820b158021
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      src/settings.cpp

+ 1 - 1
src/settings.cpp

@@ -12,7 +12,7 @@ namespace
 #define INI_FREE(_ctx, _ptr)           (BX_FREE(reinterpret_cast<bx::AllocatorI*>(_ctx), _ptr) )
 #define INI_FREE(_ctx, _ptr)           (BX_FREE(reinterpret_cast<bx::AllocatorI*>(_ctx), _ptr) )
 #define INI_MEMCPY(_dst, _src, _count) (bx::memCopy(_dst, _src, _count) )
 #define INI_MEMCPY(_dst, _src, _count) (bx::memCopy(_dst, _src, _count) )
 #define INI_STRLEN(_str)               (bx::strLen(_str) )
 #define INI_STRLEN(_str)               (bx::strLen(_str) )
-#define INI_STRICMP(_s1, _s2, _len)    (bx::strCmpI(_s1, _s2, _len) )
+#define INI_STRNICMP(_s1, _s2, _len)   (bx::strCmpI(_s1, _s2, _len) )
 
 
 #define INI_IMPLEMENTATION
 #define INI_IMPLEMENTATION