summaryrefslogtreecommitdiff
path: root/command.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-11-15 09:47:25 +0000
committertron <tron@openttd.org>2005-11-15 09:47:25 +0000
commit24f857ed5edab0bf79b1f0f2c18b9a6280103ffb (patch)
treed754a4bbb7a3e5f12b31a28e64345ca8be3cdd20 /command.c
parent9f8c5d8fd268cc6007047025650951a546133ce1 (diff)
downloadopenttd-24f857ed5edab0bf79b1f0f2c18b9a6280103ffb.tar.xz
(svn r3187) Simplify overly complicated ifs, especially if (foo) return false; else return true; is confusing
Diffstat (limited to 'command.c')
-rw-r--r--command.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/command.c b/command.c
index 3a929c941..02569d01d 100644
--- a/command.c
+++ b/command.c
@@ -309,12 +309,11 @@ static const Command _command_proc_table[] = {
/* This function range-checks a cmd, and checks if the cmd is not NULL */
bool IsValidCommand(uint cmd)
{
- cmd = cmd & 0xFF;
+ cmd &= 0xFF;
- if (cmd >= lengthof(_command_proc_table) || _command_proc_table[cmd].proc == NULL)
- return false;
-
- return true;
+ return
+ cmd < lengthof(_command_proc_table) &&
+ _command_proc_table[cmd].proc != NULL;
}
byte GetCommandFlags(uint cmd) {return _command_proc_table[cmd & 0xFF].flags;}