diff options
author | smatz <smatz@openttd.org> | 2009-10-04 20:51:50 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2009-10-04 20:51:50 +0000 |
commit | 6c7f8fc8b4974a4546190d5c2e9abcdfa74f9382 (patch) | |
tree | 4b8b5d77d47b5e40e078db1d7862680ecdd69b39 /src/console.cpp | |
parent | b243f6ca9761d75d3e5e957aa02a29500021b7d3 (diff) | |
download | openttd-6c7f8fc8b4974a4546190d5c2e9abcdfa74f9382.tar.xz |
(svn r17701) -Codechange: don't start line with a space if it's not inside comment
Diffstat (limited to 'src/console.cpp')
-rw-r--r-- | src/console.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/console.cpp b/src/console.cpp index c37d995d4..f0f97686a 100644 --- a/src/console.cpp +++ b/src/console.cpp @@ -312,7 +312,7 @@ void IConsoleVarHookAdd(const char *name, IConsoleHookTypes type, IConsoleHook * _base = item_new; \ } else { \ item_before->next = item_new; \ - } \ + } \ \ item_new->next = item; \ /* END - Alphabetical insert */ \ |