diff options
author | Marcus Comstedt | 2009-03-21 16:07:46 +0000 |
---|---|---|
committer | Marcus Comstedt | 2009-03-21 16:07:46 +0000 |
commit | bce96bd55d3745858bfd50fe41cb022ff1a9fac5 (patch) | |
tree | 820283270a54e5f64d5957b8d1b06d7de87b35bf /backends/platform/dc | |
parent | e3ca4afb595e63e1acfabd2c6e5de75ec6461e07 (diff) | |
download | scummvm-rg350-bce96bd55d3745858bfd50fe41cb022ff1a9fac5.tar.gz scummvm-rg350-bce96bd55d3745858bfd50fe41cb022ff1a9fac5.tar.bz2 scummvm-rg350-bce96bd55d3745858bfd50fe41cb022ff1a9fac5.zip |
argv should not be modified; make it plenty const.
svn-id: r39591
Diffstat (limited to 'backends/platform/dc')
-rw-r--r-- | backends/platform/dc/dcmain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/dc/dcmain.cpp b/backends/platform/dc/dcmain.cpp index b32ee53131..7a0f71ad1a 100644 --- a/backends/platform/dc/dcmain.cpp +++ b/backends/platform/dc/dcmain.cpp @@ -217,7 +217,7 @@ static OSystem_Dreamcast osys_dc; int main() { - static char *argv[] = { "scummvm", NULL, }; + static const char *argv[] = { "scummvm", NULL, }; static int argc = 1; g_system = &osys_dc; |