Ryan C. Gordon 15 лет назад
Родитель
Сommit
acdfcfca04
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      src/physfs_unicode.c

+ 2 - 2
src/physfs_unicode.c

@@ -323,7 +323,7 @@ void PHYSFS_utf8FromUcs4(const PHYSFS_uint32 *src, char *dst, PHYSFS_uint64 len)
 void PHYSFS_utf8FromUcs2(const PHYSFS_uint16 *src, char *dst, PHYSFS_uint64 len)
 {
     UTF8FROMTYPE(PHYSFS_uint64, src, dst, len);
-} /* PHYSFS_utf8FromUcs4 */
+} /* PHYSFS_utf8FromUcs2 */
 
 /* latin1 maps to unicode codepoints directly, we just utf-8 encode it. */
 void PHYSFS_utf8FromLatin1(const char *src, char *dst, PHYSFS_uint64 len)
@@ -453,7 +453,7 @@ int __PHYSFS_strnicmpASCII(const char *str1, const char *str2, PHYSFS_uint32 n)
     } /* while */
 
     return 0;
-} /* __PHYSFS_stricmpASCII */
+} /* __PHYSFS_strnicmpASCII */
 
 
 /* end of physfs_unicode.c ... */