diff options
author | Nicola Mettifogo | 2007-09-22 19:31:24 +0000 |
---|---|---|
committer | Nicola Mettifogo | 2007-09-22 19:31:24 +0000 |
commit | 50fb8b2734aa1b73f9956643b18599a2168c097a (patch) | |
tree | 104c99229ff7000c9aa4e28cef45b0c0992f43ba /engines | |
parent | d7ae40b65d9e6b8f30c071fb3327f39484eae898 (diff) | |
download | scummvm-rg350-50fb8b2734aa1b73f9956643b18599a2168c097a.tar.gz scummvm-rg350-50fb8b2734aa1b73f9956643b18599a2168c097a.tar.bz2 scummvm-rg350-50fb8b2734aa1b73f9956643b18599a2168c097a.zip |
Fixed broken compile on MSVC.
svn-id: r29026
Diffstat (limited to 'engines')
-rw-r--r-- | engines/parallaction/parallaction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/parallaction.cpp b/engines/parallaction/parallaction.cpp index 694e9291a7..e1fe4c7e25 100644 --- a/engines/parallaction/parallaction.cpp +++ b/engines/parallaction/parallaction.cpp @@ -1122,7 +1122,7 @@ void Character::setName(const char *name) { end = 0; } else { - char *s = strstr(name, "tras"); + const char *s = strstr(name, "tras"); if (s) { _suffix = _suffixTras; end = s; |