diff options
author | Max Horn | 2002-12-04 13:10:15 +0000 |
---|---|---|
committer | Max Horn | 2002-12-04 13:10:15 +0000 |
commit | 8f23186ac54e827837bdd94f5cc76a274b64ee7d (patch) | |
tree | 8d587fa16cd49bac0dfc91218d44f4217c49ec78 /scumm | |
parent | 6f7a30c5ee517d64cddb915cdd804249485c5d67 (diff) | |
download | scummvm-rg350-8f23186ac54e827837bdd94f5cc76a274b64ee7d.tar.gz scummvm-rg350-8f23186ac54e827837bdd94f5cc76a274b64ee7d.tar.bz2 scummvm-rg350-8f23186ac54e827837bdd94f5cc76a274b64ee7d.zip |
Patch #648254: INDY3: 'Save' button text
svn-id: r5824
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/dialogs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/dialogs.cpp b/scumm/dialogs.cpp index be722c4bd0..eae5d22305 100644 --- a/scumm/dialogs.cpp +++ b/scumm/dialogs.cpp @@ -187,7 +187,7 @@ const ScummVM::String ScummDialog::queryResString(int stringno) strcpy(result, (char*)tmp); } - if (!result) { // Gracelessly degrade to english :) + if (!result || *result == '\0') { // Gracelessly degrade to english :) if (_scumm->_features & GF_AFTER_V6) result = string_map_table_v6[stringno - 1].string; else |