mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 15:21:40 +00:00
Fix bug #1252289 'ITE: Crash with "paws game"'. And now game pauze is
mapped to key 'z'. svn-id: r18626
This commit is contained in:
parent
d3b229b051
commit
df1076b97a
@ -118,6 +118,11 @@ class Font {
|
||||
error("Font::validate: Invalid font id.");
|
||||
}
|
||||
}
|
||||
|
||||
bool loaded(FontId fontId) {
|
||||
return !((fontId < 0) || (fontId >= _loadedFonts));
|
||||
}
|
||||
|
||||
private:
|
||||
|
||||
void loadFont(uint32 fontResourceId);
|
||||
|
@ -100,7 +100,7 @@ int SagaEngine::processInput() {
|
||||
_actor->abortSpeech();
|
||||
break;
|
||||
case 19: // pause
|
||||
case 'p':
|
||||
case 'z':
|
||||
_render->toggleFlag(RF_RENDERPAUSE);
|
||||
break;
|
||||
default:
|
||||
|
@ -145,10 +145,12 @@ void Render::drawScene() {
|
||||
|
||||
// Display "paused game" message, if applicable
|
||||
if (_flags & RF_RENDERPAUSE) {
|
||||
textPoint.x = (backBufferSurface->w - _vm->_font->getStringWidth(kBigFont, pauseString, 0, kFontOutline)) / 2;
|
||||
FontId fontId = _vm->_font->loaded(kBigFont) ? kBigFont : kMediumFont;
|
||||
|
||||
textPoint.x = (backBufferSurface->w - _vm->_font->getStringWidth(fontId, pauseString, 0, kFontOutline)) / 2;
|
||||
textPoint.y = 90;
|
||||
|
||||
_vm->_font->textDraw(kBigFont, backBufferSurface, pauseString, textPoint, kITEColorBrightWhite, kITEColorBlack, kFontOutline);
|
||||
_vm->_font->textDraw(fontId, backBufferSurface, pauseString, textPoint, kITEColorBrightWhite, kITEColorBlack, kFontOutline);
|
||||
}
|
||||
|
||||
// Update user interface
|
||||
|
Loading…
x
Reference in New Issue
Block a user