aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorbjörn Andersson2007-08-12 11:39:02 +0000
committerTorbjörn Andersson2007-08-12 11:39:02 +0000
commit84dbc41e47aafc362379dc2a334abe00dc81da6a (patch)
treec17e48e58a754507e9965bd506db27a2aa1b8e24
parent04f2c4e1e43dbc8cb9bf72a51c569eda1b4967ac (diff)
downloadscummvm-rg350-84dbc41e47aafc362379dc2a334abe00dc81da6a.tar.gz
scummvm-rg350-84dbc41e47aafc362379dc2a334abe00dc81da6a.tar.bz2
scummvm-rg350-84dbc41e47aafc362379dc2a334abe00dc81da6a.zip
Fixed warning.
svn-id: r28553
-rw-r--r--engines/lure/surface.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/lure/surface.cpp b/engines/lure/surface.cpp
index 5ebe0ae05c..0465fe16de 100644
--- a/engines/lure/surface.cpp
+++ b/engines/lure/surface.cpp
@@ -793,9 +793,9 @@ struct RestartRecord {
};
RestartRecord buttonBounds[] = {
- {EN_ANY, 48, 14, 118, 152, 168, 152},
- {DE_DEU, 48, 14, 106, 152, 168, 152},
- {UNK_LANG, 48, 14, 112, 152, 168, 152}
+ { EN_ANY, 48, 14, { 118, 152 }, { 168, 152 } },
+ { DE_DEU, 48, 14, { 106, 152 }, { 168, 152 } },
+ { UNK_LANG, 48, 14, { 112, 152 }, { 168, 152 } }
};