diff options
author | Borja Lorente | 2016-08-10 17:22:46 +0200 |
---|---|---|
committer | Borja Lorente | 2016-08-19 16:29:16 +0200 |
commit | 02138548aeb91ee6d435dc71763c74bfed125121 (patch) | |
tree | dfbf14e2f6a96de9409da73289feefdf477eb843 /engines/macventure | |
parent | 0cd9e876297872269d83f38e93e6525dd4efd8e5 (diff) | |
download | scummvm-rg350-02138548aeb91ee6d435dc71763c74bfed125121.tar.gz scummvm-rg350-02138548aeb91ee6d435dc71763c74bfed125121.tar.bz2 scummvm-rg350-02138548aeb91ee6d435dc71763c74bfed125121.zip |
MACVENTURE: Fix win game dialog
Diffstat (limited to 'engines/macventure')
-rw-r--r-- | engines/macventure/prebuilt_dialogs.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/macventure/prebuilt_dialogs.cpp b/engines/macventure/prebuilt_dialogs.cpp index bb9ea65b68..76d2c15ed4 100644 --- a/engines/macventure/prebuilt_dialogs.cpp +++ b/engines/macventure/prebuilt_dialogs.cpp @@ -50,13 +50,13 @@ PrebuiltDialog prebuiltDialogs[kPrebuiltDialogCount] = { }, { /* kWinGameDialog */ - Common::Rect(20, 100, 400, 200), + Common::Rect(20, 100, 320, 200), { - {kDEPlainText, "You Won!", kDANone, Common::Point(10, 10), 400, 20}, - {kDEPlainText, "What do you want to do?", kDANone, Common::Point(10, 30), 400, 20}, - {kDEButton, "New Game", kDANewGame, Common::Point(40, 30), 50, 20}, - {kDEButton, "Load", kDALoadGame, Common::Point(100, 30), 50, 20}, - {kDEButton, "Quit", kDAQuit, Common::Point(160, 30), 50, 20}, + {kDEPlainText, "You Won!", kDANone, Common::Point(20, 16), 280, 20}, + {kDEPlainText, "What do you want to do?", kDANone, Common::Point(20, 30), 280, 20}, + {kDEButton, "New Game", kDANewGame, Common::Point(20, 60), 70, 20}, + {kDEButton, "Load", kDALoadGame, Common::Point(110, 60), 70, 20}, + {kDEButton, "Quit", kDAQuit, Common::Point(200, 60), 70, 20}, {kDEEnd, "", kDANone, Common::Point(0, 0), 0, 0} } } |