diff options
author | rubidium <rubidium@openttd.org> | 2008-11-25 23:24:38 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-11-25 23:24:38 +0000 |
commit | 39bbe9714fe81f9abd3e8eb8cc2270b35c9818b2 (patch) | |
tree | f11d01f519fde9a846c3cfa50eb4c6674c441020 /src | |
parent | ba2345808b84a22fe444849b47ce648c3c32bce0 (diff) | |
download | openttd-39bbe9714fe81f9abd3e8eb8cc2270b35c9818b2.tar.xz |
(svn r14633) -Fix: compile failure when building a debug build without network support.
Diffstat (limited to 'src')
-rw-r--r-- | src/main_gui.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main_gui.cpp b/src/main_gui.cpp index 21eedb9c0..91c24fd65 100644 --- a/src/main_gui.cpp +++ b/src/main_gui.cpp @@ -267,7 +267,9 @@ struct MainWindow : Window case '1' | WKC_ALT: // Gimme money /* Server can not cheat in advertise mode either! */ +#ifdef ENABLE_NETWORK if (!_networking || !_network_server || !_settings_client.network.server_advertise) +#endif /* ENABLE_NETWORK */ DoCommandP(0, 10000000, 0, NULL, CMD_MONEY_CHEAT); break; |