diff options
-rw-r--r-- | engines/parallaction/font.cpp | 4 | ||||
-rw-r--r-- | engines/parallaction/gui_br.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/engines/parallaction/font.cpp b/engines/parallaction/font.cpp index e84dad34aa..286af3cafe 100644 --- a/engines/parallaction/font.cpp +++ b/engines/parallaction/font.cpp @@ -697,8 +697,8 @@ void Parallaction_br::initFonts() { // fonts/sonya/18 // fonts/vanya/16 - _menuFont = _disk->loadFont("natasha"); - _dialogueFont = _disk->loadFont("vanya"); + _menuFont = _disk->loadFont("sonya"); + _dialogueFont = _disk->loadFont("natasha"); Common::MemoryReadStream stream(_amigaTopazFont, 2600, false); _labelFont = new AmigaFont(stream); } diff --git a/engines/parallaction/gui_br.cpp b/engines/parallaction/gui_br.cpp index 2631d2ab0c..62f4c8e2bd 100644 --- a/engines/parallaction/gui_br.cpp +++ b/engines/parallaction/gui_br.cpp @@ -104,7 +104,7 @@ class MainMenuInputState_BR : public MenuInputState { #define MENUITEMS_X 250 #define MENUITEMS_Y 200 - #define MENUITEM_WIDTH 190 + #define MENUITEM_WIDTH 200 #define MENUITEM_HEIGHT 18 Frames* renderMenuItem(const char *text) { |