summaryrefslogtreecommitdiff
path: root/command.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-03-12 10:15:36 +0000
committertron <tron@openttd.org>2006-03-12 10:15:36 +0000
commit214b5eb42f8296965837a29e086fd4c6a7406c37 (patch)
treef6d52699ba6457b1360804a806cb2cd6e383a699 /command.c
parentb9ade450083a4f6db9064f0e183285930b7ab7c3 (diff)
downloadopenttd-214b5eb42f8296965837a29e086fd4c6a7406c37.tar.xz
(svn r3827) Remove the global variable _error_message_2, it's only used as local variable
Diffstat (limited to 'command.c')
-rw-r--r--command.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/command.c b/command.c
index 220e6b975..b7c3a5ede 100644
--- a/command.c
+++ b/command.c
@@ -399,6 +399,7 @@ bool DoCommandP(TileIndex tile, uint32 p1, uint32 p2, CommandCallback *callback,
CommandProc *proc;
uint32 flags;
bool notest;
+ StringID error_part1;
int x = TileX(tile) * 16;
int y = TileY(tile) * 16;
@@ -412,13 +413,13 @@ bool DoCommandP(TileIndex tile, uint32 p1, uint32 p2, CommandCallback *callback,
assert(_docommand_recursive == 0);
_error_message = INVALID_STRING_ID;
- _error_message_2 = cmd >> 16;
+ error_part1 = GB(cmd, 16, 16);
_additional_cash_required = 0;
/** Spectator has no rights except for the dedicated server which
* is a spectator but is the server, so can do anything */
if (_current_player == OWNER_SPECTATOR && !_network_dedicated) {
- ShowErrorMessage(_error_message, _error_message_2, x, y);
+ ShowErrorMessage(_error_message, error_part1, x, y);
_cmd_text = NULL;
return false;
}
@@ -459,7 +460,7 @@ bool DoCommandP(TileIndex tile, uint32 p1, uint32 p2, CommandCallback *callback,
res = proc(x, y, flags, p1, p2);
if (CmdFailed(res)) {
if (res & 0xFFFF) _error_message = res & 0xFFFF;
- ShowErrorMessage(_error_message, _error_message_2, x, y);
+ ShowErrorMessage(_error_message, error_part1, x, y);
} else {
ShowEstimatedCostOrIncome(res, x, y);
}
@@ -524,7 +525,7 @@ bool DoCommandP(TileIndex tile, uint32 p1, uint32 p2, CommandCallback *callback,
ShowCostOrIncomeAnimation(x, y, GetSlopeZ(x, y), res2);
if (_additional_cash_required) {
SetDParam(0, _additional_cash_required);
- ShowErrorMessage(STR_0003_NOT_ENOUGH_CASH_REQUIRES, _error_message_2, x,y);
+ ShowErrorMessage(STR_0003_NOT_ENOUGH_CASH_REQUIRES, error_part1, x,y);
if (res2 == 0) goto callb_err;
}
}
@@ -537,8 +538,9 @@ bool DoCommandP(TileIndex tile, uint32 p1, uint32 p2, CommandCallback *callback,
show_error:
// show error message if the command fails?
- if (IsLocalPlayer() && _error_message_2 != 0)
- ShowErrorMessage(_error_message, _error_message_2, x,y);
+ if (IsLocalPlayer() && error_part1 != 0) {
+ ShowErrorMessage(_error_message, error_part1, x,y);
+ }
callb_err:
_docommand_recursive = 0;