makerom v0.7

This commit is contained in:
3DSGuy
2014-04-21 18:44:00 +08:00
parent 9cb89cbe8b
commit c2a18c961d
26 changed files with 787 additions and 300 deletions
+2
View File
@@ -178,6 +178,8 @@ int str_utf8_to_u16(u16 **dst, u32 *dst_len, u8 *src, u32 src_len)
//Char IO
bool DoesFileExist(char *filename)
{
if(filename == NULL)
return false;
#ifdef _WIN32
struct _stat64 st;
return _stat64(filename, &st) == 0;