aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/sci/graphics/menu.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/sci/graphics/menu.cpp b/engines/sci/graphics/menu.cpp
index 50f87e6e6c..124c8cc084 100644
--- a/engines/sci/graphics/menu.cpp
+++ b/engines/sci/graphics/menu.cpp
@@ -184,6 +184,10 @@ void GfxMenu::kernelAddEntry(Common::String title, Common::String content, reg_t
case '-':
case ' ':
separatorCount++;
+ break;
+ case '%':
+ // Some multilingual sci01 games use e.g. '--!%G--!' (which doesn't really make sense)
+ tempPos = curPos;
}
curPos++;
}