made sdl FCEUD_GetCompilerString() return g++ version

This commit is contained in:
zeromus 2006-07-28 06:05:47 +00:00
parent a1998899cb
commit 77ea12d4c7
1 changed files with 1 additions and 1 deletions

View File

@ -548,7 +548,7 @@ FILE *FCEUD_UTF8fopen(const char *fn, const char *mode)
return(fopen(fn,mode)); return(fopen(fn,mode));
} }
static char s_linuxCompilerString[4] = "g++"; static char *s_linuxCompilerString = "g++ " __VERSION__;
char *FCEUD_GetCompilerString() { char *FCEUD_GetCompilerString() {
return (char *)s_linuxCompilerString; return (char *)s_linuxCompilerString;
} }