aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorTravis Howell2009-03-23 09:16:26 +0000
committerTravis Howell2009-03-23 09:16:26 +0000
commit4f21bc467fed2724d117204e9df8b29e0337fe4a (patch)
treebfc7a9329f7e1dd7e941238515d79eb4ef653dd3 /engines
parentf405dff025b0a5e12b1b05d210f2bca9723f4a61 (diff)
downloadscummvm-rg350-4f21bc467fed2724d117204e9df8b29e0337fe4a.tar.gz
scummvm-rg350-4f21bc467fed2724d117204e9df8b29e0337fe4a.tar.bz2
scummvm-rg350-4f21bc467fed2724d117204e9df8b29e0337fe4a.zip
Correct the fonts used by Amiga version of BRA.
svn-id: r39628
Diffstat (limited to 'engines')
-rw-r--r--engines/parallaction/font.cpp4
-rw-r--r--engines/parallaction/gui_br.cpp2
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) {