diff options
author | Joost Peters | 2009-04-29 15:54:35 +0000 |
---|---|---|
committer | Joost Peters | 2009-04-29 15:54:35 +0000 |
commit | c5bc18e070b689b8b73068ece84b1a28f2b9f555 (patch) | |
tree | b6340647ced865d949fd212308083617b4785146 | |
parent | 9d2e1617a8afdf880f8bcfeb087a05b15eb77863 (diff) | |
download | scummvm-rg350-c5bc18e070b689b8b73068ece84b1a28f2b9f555.tar.gz scummvm-rg350-c5bc18e070b689b8b73068ece84b1a28f2b9f555.tar.bz2 scummvm-rg350-c5bc18e070b689b8b73068ece84b1a28f2b9f555.zip |
fix warning
svn-id: r40204
-rw-r--r-- | backends/platform/psp/psp_main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/psp/psp_main.cpp b/backends/platform/psp/psp_main.cpp index e01f63973b..0af7ebf269 100644 --- a/backends/platform/psp/psp_main.cpp +++ b/backends/platform/psp/psp_main.cpp @@ -121,7 +121,7 @@ int SetupCallbacks(void) { int main(void) { SetupCallbacks(); - static char *argv[] = { "scummvm", NULL }; + static const char *argv[] = { "scummvm", NULL }; static int argc = sizeof(argv)/sizeof(char *)-1; g_system = new OSystem_PSP_GU(); |