diff options
author | Patric Stout <truebrain@openttd.org> | 2021-03-04 13:59:35 +0100 |
---|---|---|
committer | Patric Stout <github@truebrain.nl> | 2021-03-04 22:23:05 +0100 |
commit | 06a3c0cb2696eaccacc8f3d12aacd7ced700989b (patch) | |
tree | 8013dd97cfb5f1669a1061f06425aaad562bbb01 | |
parent | 8c6b5e52fdf0c638315a6768ba4ac047b13a082d (diff) | |
download | openttd-06a3c0cb2696eaccacc8f3d12aacd7ced700989b.tar.xz |
Fix dddf885f: use IConsoleError to produce console errors
-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 621c1758c..8a7a5e399 100644 --- a/src/console_cmds.cpp +++ b/src/console_cmds.cpp @@ -1868,7 +1868,7 @@ DEF_CONSOLE_CMD(ConContent) * to download every available package on BaNaNaS. This is not in * the spirit of this service. Additionally, these few people were * good for 70% of the consumed bandwidth of BaNaNaS. */ - IConsolePrintF(CC_ERROR, "'select all' is no longer supported since 1.11"); + IConsoleError("'select all' is no longer supported since 1.11"); } else { _network_content_client.Select((ContentID)atoi(argv[2])); } |