summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorennewalker <ennewalker@c06c8d41-db1a-0410-9941-cceddc491573>2008-09-27 01:01:51 +0000
committerennewalker <ennewalker@c06c8d41-db1a-0410-9941-cceddc491573>2008-09-27 01:01:51 +0000
commit7a551ec849db7f38819269458a40ad79f3f587cc (patch)
treea67063c9e9a75256ebbe2bfb63ec5b1ffac68229
parent5ba76c25e08f3f3a00216c0bffef7cdce0e1a72f (diff)
downloadcrawl-ref-7a551ec849db7f38819269458a40ad79f3f587cc.tar.gz
crawl-ref-7a551ec849db7f38819269458a40ad79f3f587cc.zip
[2043179] Fixing x/y swap when saving window position to wininit.txt.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup-0.4@7029 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/libgui.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/libgui.cc b/crawl-ref/source/libgui.cc
index 6fb7c56f7e..30a85cdaa0 100644
--- a/crawl-ref/source/libgui.cc
+++ b/crawl-ref/source/libgui.cc
@@ -147,8 +147,8 @@ struct prefs pref_data[MAX_PREFS] =
{"MAP PX ", "MapPx", 'I', &map_px, 1, 10, 2},
{"MSG X ", "MsgX", 'I', &msg_x, 40, 80, 3},
{"MSG Y ", "MsgY", 'I', &msg_y, 8, 20, 4},
- {"WIN TOP ", "WindowTop", 'I', &winox, -100, 2000, 5},
- {"WIN LEFT ", "WindowLeft",'I', &winoy, -100, 2000, 6},
+ {"WIN TOP ", "WindowTop", 'I', &winoy, -100, 2000, 5},
+ {"WIN LEFT ", "WindowLeft",'I', &winox, -100, 2000, 6},
{"FONT ", "FontName", 'S', font_name, 0, 0, 0},
{"FONT SIZE", "FontSize", 'I', &font_size, 8, 24, 7}
#ifdef WIN32TILES