From 7a551ec849db7f38819269458a40ad79f3f587cc Mon Sep 17 00:00:00 2001 From: ennewalker Date: Sat, 27 Sep 2008 01:01:51 +0000 Subject: [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 --- crawl-ref/source/libgui.cc | 4 ++-- 1 file 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 -- cgit v1.2.3-54-g00ecf