diff options
author | Max Horn | 2008-09-27 18:34:24 +0000 |
---|---|---|
committer | Max Horn | 2008-09-27 18:34:24 +0000 |
commit | 0d34b772a408771b742cd196b14b6cbb34145d00 (patch) | |
tree | 42bc1e0b13841e49f937d61785f56217ad1bebc6 /engines | |
parent | 479e67f2f27f49ae7665cd552acfb55e6192f1ae (diff) | |
download | scummvm-rg350-0d34b772a408771b742cd196b14b6cbb34145d00.tar.gz scummvm-rg350-0d34b772a408771b742cd196b14b6cbb34145d00.tar.bz2 scummvm-rg350-0d34b772a408771b742cd196b14b6cbb34145d00.zip |
Fixed a nasty bug in SearchManager::addDirectory; made the 'char' constructor of Common::String explicit, to avoid such bugs in the future
svn-id: r34660
Diffstat (limited to 'engines')
-rw-r--r-- | engines/parallaction/balloons.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/balloons.cpp b/engines/parallaction/balloons.cpp index 290aa5e625..70c3d5789e 100644 --- a/engines/parallaction/balloons.cpp +++ b/engines/parallaction/balloons.cpp @@ -79,7 +79,7 @@ public: token = tokenizer.nextToken(); token = expand(token); - if (token == '/') { + if (token == "/") { tokenWidth = 0; action(); textNewLine(); |