Skip to content

Commit

Permalink
WAGE: Fix crash
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Jan 6, 2016
1 parent 1f9e724 commit 550d393
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/wage/script.cpp
Expand Up @@ -952,7 +952,7 @@ void Script::handleMoveCommand(Scene::Directions dir, const char *dirName) {
return;
}
}
if (msg != NULL && msg.size() > 0) {
if (msg.size() > 0) {
appendText(msg);
} else {
Common::String txt("You can't go ");
Expand Down

0 comments on commit 550d393

Please sign in to comment.