diff options
author | Strangerke | 2016-07-29 23:14:29 +0200 |
---|---|---|
committer | Bendegúz Nagy | 2016-08-26 23:02:22 +0200 |
commit | ba46060b13e7106e524fd1a56086e4e88c0b9fb4 (patch) | |
tree | 42ceb87bf7b6d08ae66bf9a7514e8847ec60ee1c /engines/dm | |
parent | 22d6973de5814a6229fb665a43882df1eb140048 (diff) | |
download | scummvm-rg350-ba46060b13e7106e524fd1a56086e4e88c0b9fb4.tar.gz scummvm-rg350-ba46060b13e7106e524fd1a56086e4e88c0b9fb4.tar.bz2 scummvm-rg350-ba46060b13e7106e524fd1a56086e4e88c0b9fb4.zip |
DM: Fix compilation using MSVC9
Diffstat (limited to 'engines/dm')
-rw-r--r-- | engines/dm/dm.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/dm/dm.cpp b/engines/dm/dm.cpp index 50afa43a8c..3b23028c86 100644 --- a/engines/dm/dm.cpp +++ b/engines/dm/dm.cpp @@ -509,11 +509,11 @@ void DMEngine::f441_processEntrance() { void DMEngine::f444_endGame(bool doNotDrawCreditsOnly) { // TODO: localization - static Box G0013_s_Graphic562_Box_Endgame_Restart_Outer = {103, 217, 145, 159}; - static Box G0014_s_Graphic562_Box_Endgame_Restart_Inner = {105, 215, 147, 157}; - static Box G0012_s_Graphic562_Box_Endgame_TheEnd = {120, 199, 95, 108}; - static Box G0015_s_Graphic562_Box_Endgame_ChampionMirror = {11, 74, 7, 49}; - static Box G0016_s_Graphic562_Box_Endgame_ChampionPortrait = {27, 58, 13, 41}; + static Box G0013_s_Graphic562_Box_Endgame_Restart_Outer = Box(103, 217, 145, 159); + static Box G0014_s_Graphic562_Box_Endgame_Restart_Inner = Box(105, 215, 147, 157); + static Box G0012_s_Graphic562_Box_Endgame_TheEnd = Box(120, 199, 95, 108); + static Box G0015_s_Graphic562_Box_Endgame_ChampionMirror = Box(11, 74, 7, 49); + static Box G0016_s_Graphic562_Box_Endgame_ChampionPortrait = Box(27, 58, 13, 41); int16 L1409_i_Multiple; #define AL1409_i_Color L1409_i_Multiple #define AL1409_i_ChampionIndex L1409_i_Multiple |