diff options
author | alberth <alberth@openttd.org> | 2009-04-10 09:43:53 +0000 |
---|---|---|
committer | alberth <alberth@openttd.org> | 2009-04-10 09:43:53 +0000 |
commit | d28cd968177f6e83d982f4e183fd8e6e031a0ce4 (patch) | |
tree | 9ca49e93e7cd9ea3cb0cdb03f048427a26c5f946 | |
parent | 460fbc7c921b4d960ca76a938f4221038c3c286d (diff) | |
download | openttd-d28cd968177f6e83d982f4e183fd8e6e031a0ce4.tar.xz |
(svn r16008) -Fix (r15808): Unswap swapped music selection panels.
-rw-r--r-- | src/music_gui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/music_gui.cpp b/src/music_gui.cpp index 40ff45cd3..f7a576f96 100644 --- a/src/music_gui.cpp +++ b/src/music_gui.cpp @@ -239,7 +239,7 @@ public: SetDParam(0, i); SetDParam(2, i); SetDParam(1, SPECSTR_SONGNAME); - DrawString(this->widget[MTSW_LIST_RIGHT].left + 2, this->widget[MTSW_LIST_RIGHT].right - 2, 23 + (i - 1) * 6, (i < 10) ? STR_01EC_0 : STR_01ED, TC_FROMSTRING); + DrawString(this->widget[MTSW_LIST_LEFT].left + 2, this->widget[MTSW_LIST_LEFT].right - 2, 23 + (i - 1) * 6, (i < 10) ? STR_01EC_0 : STR_01ED, TC_FROMSTRING); } for (i = 0; i != 6; i++) { @@ -256,7 +256,7 @@ public: SetDParam(0, i); SetDParam(1, SPECSTR_SONGNAME); SetDParam(2, i); - DrawString(this->widget[MTSW_LIST_LEFT].left + 2, this->widget[MTSW_LIST_LEFT].right - 2, y, (i < 10) ? STR_01EC_0 : STR_01ED, TC_FROMSTRING); + DrawString(this->widget[MTSW_LIST_RIGHT].left + 2, this->widget[MTSW_LIST_RIGHT].right - 2, y, (i < 10) ? STR_01EC_0 : STR_01ED, TC_FROMSTRING); y += 6; } } |