aboutsummaryrefslogtreecommitdiff
path: root/base/commandLine.h
diff options
context:
space:
mode:
authorMarcus Comstedt2009-03-21 16:07:46 +0000
committerMarcus Comstedt2009-03-21 16:07:46 +0000
commitbce96bd55d3745858bfd50fe41cb022ff1a9fac5 (patch)
tree820283270a54e5f64d5957b8d1b06d7de87b35bf /base/commandLine.h
parente3ca4afb595e63e1acfabd2c6e5de75ec6461e07 (diff)
downloadscummvm-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 'base/commandLine.h')
-rw-r--r--base/commandLine.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/commandLine.h b/base/commandLine.h
index 794e08b651..8801ed17d8 100644
--- a/base/commandLine.h
+++ b/base/commandLine.h
@@ -32,7 +32,7 @@
namespace Base {
void registerDefaults();
-Common::String parseCommandLine(Common::StringMap &settings, int argc, char **argv);
+Common::String parseCommandLine(Common::StringMap &settings, int argc, const char * const *argv);
bool processSettings(Common::String &command, Common::StringMap &settings);
} // End of namespace Base