mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
SCUMM: Fix interrupting speech not working with AZERTY keyboard
On my AZERTY keyboard the period is obtained using SHIFT + ; and the code checking the PERIOD keycode and no modifier was failing on both account. The manual for my French DOTT mentions the period key, but I have not actually checked how it worked with the original executable and if using the semicolon key without shift or using the colon key (which would be the period key on a English-US layout) works.
This commit is contained in:
parent
3b06ac7b1e
commit
7cbf5a9289
@ -560,7 +560,7 @@ void ScummEngine::processKeyboard(Common::KeyState lastKeyHit) {
|
||||
} else if (pauseKeyEnabled && (lastKeyHit.keycode == Common::KEYCODE_SPACE && lastKeyHit.hasFlags(0))) {
|
||||
pauseGame();
|
||||
|
||||
} else if (talkstopKeyEnabled && (lastKeyHit.keycode == Common::KEYCODE_PERIOD && lastKeyHit.hasFlags(0))) {
|
||||
} else if (talkstopKeyEnabled && lastKeyHit.ascii == '.') {
|
||||
_talkDelay = 0;
|
||||
if (_sound->_sfxMode & 2)
|
||||
stopTalk();
|
||||
|
Loading…
x
Reference in New Issue
Block a user