BLADERUNNER: Fix "Type a name" text in KIA save screen

This commit is contained in:
Thanasis Antoniou
2020-02-06 00:10:57 +02:00
parent d4c659610d
commit 1b584ebf32
+1 -1
View File
@@ -154,7 +154,7 @@ void KIASectionSave::draw(Graphics::Surface &surface) {
// Original game shows warnings/error here, but we don't have any
const char *textTypeName = _vm->_textOptions->getText(24); // Type a name ...
const char *textTypeName = _vm->_textOptions->getText(25); // Type a name ...
int textTypeNameWidth = _vm->_mainFont->getStringWidth(textTypeName);
_vm->_mainFont->drawString(&surface, textTypeName, 308 - textTypeNameWidth / 2, 352, surface.w, surface.format.RGBToColor(240, 232, 192));