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:
Eugene Sandulenko 2005-08-07 14:54:11 +00:00
parent d3b229b051
commit df1076b97a
3 changed files with 10 additions and 3 deletions

View File

@ -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);

View File

@ -100,7 +100,7 @@ int SagaEngine::processInput() {
_actor->abortSpeech();
break;
case 19: // pause
case 'p':
case 'z':
_render->toggleFlag(RF_RENDERPAUSE);
break;
default:

View File

@ -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