aboutsummaryrefslogtreecommitdiff
path: root/saga/interface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'saga/interface.cpp')
-rw-r--r--saga/interface.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/saga/interface.cpp b/saga/interface.cpp
index 534d48a269..3e2f848420 100644
--- a/saga/interface.cpp
+++ b/saga/interface.cpp
@@ -858,7 +858,8 @@ void Interface::processTextInput(uint16 ascii) {
default:
if (((ascii >= 'a') && (ascii <='z')) ||
((ascii >= '0') && (ascii <='9')) ||
- ((ascii >= 'A') && (ascii <='Z'))) {
+ ((ascii >= 'A') && (ascii <='Z')) ||
+ (ascii == ' ')) {
if (_textInputStringLength < SAVE_TITLE_SIZE - 1) {
ch[0] = ascii;
tempWidth = _vm->_font->getStringWidth(SMALL_FONT_ID, ch, 0, 0);