changeset 11544:b82c75ea2fc4 draft

(svn r15907) -Fix (r15841): some strings in save/load dialog were drawn with a 2 pixel offset
author glx <glx@openttd.org>
date Tue, 31 Mar 2009 22:55:38 +0000
parents 8b0fe56a5b44
children 907f3cfd672e
files src/misc_gui.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/misc_gui.cpp
+++ b/src/misc_gui.cpp
@@ -1588,7 +1588,7 @@
 		for (uint pos = this->vscroll.pos; pos < _fios_items.Length(); pos++) {
 			const FiosItem *item = _fios_items.Get(pos);
 
-			DrawString(widg->left + 4, widg->right - 2, y, item->title, _fios_colours[item->type]);
+			DrawString(widg->left + 2, widg->right - 2, y, item->title, _fios_colours[item->type]);
 			y += 10;
 			if (y >= this->vscroll.cap * 10 + widg->top + 1) break;
 		}