CINE: OS: Fix space missing in verb line

Fixes #11687
This commit is contained in:
Kari Salminen 2021-09-04 23:05:43 +03:00 committed by Eugene Sandulenko
parent 865e3d6179
commit 294ed169f9
2 changed files with 2 additions and 0 deletions

View File

@ -69,6 +69,7 @@ For a more comprehensive changelog of the latest experimental code, see:
Cine:
- Added detection for Italian Amiga Operation Stealth.
- Fixed space missing in verb line.
- Fixed vertically overflowing message boxes.
Dreamweb:

View File

@ -1074,6 +1074,7 @@ void playerCommandMouseLeft(uint16 &mouseButton, uint16 &mouseX, uint16 &mouseY)
g_cine->_commandBuffer = "";
} else if (g_cine->getGameType() == Cine::GType_OS) {
isDrawCommandEnabled = 1;
g_cine->_commandBuffer += " ";
g_cine->_commandBuffer += commandPrepositionTable[playerCommand];
}