From 06a3c0cb2696eaccacc8f3d12aacd7ced700989b Mon Sep 17 00:00:00 2001 From: Patric Stout Date: Thu, 4 Mar 2021 13:59:35 +0100 Subject: [PATCH] Fix dddf885f: use IConsoleError to produce console errors --- src/console_cmds.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/console_cmds.cpp b/src/console_cmds.cpp index 621c1758cb..8a7a5e399e 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])); }