1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-26 07:59:09 +00:00

(svn r16182) -Fix: hardcoded (old sized) MAX_COMPANIES constant

This commit is contained in:
rubidium
2009-04-29 10:00:58 +00:00
parent e41886e78f
commit afada70bac

View File

@@ -552,7 +552,7 @@ void ShowErrorMessage(StringID msg_1, StringID msg_2, int x, int y)
Point pt;
const ViewPort *vp;
if (msg_1 != STR_ERROR_OWNED_BY || GetDParam(2) >= 8) {
if (msg_1 != STR_ERROR_OWNED_BY || GetDParam(2) >= MAX_COMPANIES) {
if ((x | y) != 0) {
pt = RemapCoords2(x, y);
vp = FindWindowById(WC_MAIN_WINDOW, 0)->viewport;