From 7da743a0dc8d9e5098da2464d405a0ed93803c17 Mon Sep 17 00:00:00 2001 From: rubidium Date: Wed, 4 Feb 2009 16:45:07 +0000 Subject: (svn r15336) -Fix: do not use _current_company in the GUI as there are no guarantees that _current_company is the same as _local_company. --- src/cheat_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/cheat_gui.cpp') diff --git a/src/cheat_gui.cpp b/src/cheat_gui.cpp index bfb9a2b6f..ac0324682 100644 --- a/src/cheat_gui.cpp +++ b/src/cheat_gui.cpp @@ -166,7 +166,7 @@ struct CheatWindow : Window { case STR_CHEAT_CHANGE_COMPANY: SetDParam(0, val + 1); GetString(buf, STR_CHEAT_CHANGE_COMPANY, lastof(buf)); - DrawCompanyIcon(_current_company, 60 + GetStringBoundingBox(buf).width, y + 2); + DrawCompanyIcon(_local_company, 60 + GetStringBoundingBox(buf).width, y + 2); break; /* Set correct string for switch climate cheat */ -- cgit v1.2.3-54-g00ecf