mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-03 00:39:14 +00:00
Fix a bunch of Visual Studio compilation warnings, mostly related to truncating integers.
This commit is contained in:
+1
-1
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user