diff options
author | rubidium <rubidium@openttd.org> | 2011-08-21 12:51:18 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2011-08-21 12:51:18 +0000 |
commit | 6d51883a87be1d67e7cdad6e6207004b5a11df8f (patch) | |
tree | 01dfeaec1768179a76230259aa403700364c9c6d /src/console_cmds.cpp | |
parent | 5e7abe58f9aa5d4cfee31d043544405213cb121f (diff) | |
download | openttd-6d51883a87be1d67e7cdad6e6207004b5a11df8f.tar.xz |
(svn r22793) -Codechange: remove callback default to make clear they are not forgotten
Diffstat (limited to 'src/console_cmds.cpp')
-rw-r--r-- | src/console_cmds.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/console_cmds.cpp b/src/console_cmds.cpp index cf2444aac..b5f8d2e47 100644 --- a/src/console_cmds.cpp +++ b/src/console_cmds.cpp @@ -1268,7 +1268,7 @@ DEF_CONSOLE_CMD(ConRescanNewGRF) } TarScanner::DoScan(); - ScanNewGRFFiles(); + ScanNewGRFFiles(NULL); return true; } |