diff --git a/zsnes/src/parsegen.cpp b/zsnes/src/parsegen.cpp index 16589746..6add6d18 100644 --- a/zsnes/src/parsegen.cpp +++ b/zsnes/src/parsegen.cpp @@ -263,7 +263,8 @@ ssize_t enhanced_atoi(const char *str) system("gcc -o eatio.exe eatio.c -s"); #endif - system("."SLASH_STR"eatio.exe"); + //Older MSVCs too stupid to concatinate on their own + system((string(".")+string(SLASH_STR)+"eatio.exe").c_str()); remove("eatio.c"); remove("eatio.exe");