Fix a bunch of Visual Studio compilation warnings, mostly related to truncating integers.

This commit is contained in:
Myria
2015-12-26 11:38:37 -08:00
parent a2f6616d21
commit fc8eb8ce8c
10 changed files with 58 additions and 58 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ void filepath_append_utf16(filepath* fpath, const u8* name)
if (code > 0x7F)
code = '#';
fpath->pathname[size++] = code;
fpath->pathname[size++] = (char) code;
}
fpath->pathname[size] = 0;