mirror of
https://github.com/GerbilSoft/rom-properties.git
synced 2025-06-18 19:45:41 -04:00
[rpcli] verifykeys.cpp: Remove some extra newlines.
Forgot to remove these when colorizing warning messages in
commit 365a7d5302
.
([rpcli] verifykeys.cpp: Colorize output.)
Affects: v2.5.1
This commit is contained in:
parent
53b74e0467
commit
0328879a01
@ -77,7 +77,7 @@ int VerifyKeys(void)
|
||||
if (!key) {
|
||||
ConsoleSetTextColor(&ci_stdout, 3, true); // yellow
|
||||
ConsolePrint(&ci_stdout,
|
||||
fmt::format(FRUN(C_("rpcli", "WARNING: Key [{:d},{:d}] has no Key object. Skipping...")), sectIdx, keyIdx), true);
|
||||
fmt::format(FRUN(C_("rpcli", "WARNING: Key [{:d},{:d}] has no Key object. Skipping...")), sectIdx, keyIdx));
|
||||
ConsoleResetTextColor(&ci_stdout);
|
||||
ConsolePrintNewline(&ci_stdout);
|
||||
fflush(stdout);
|
||||
@ -88,7 +88,7 @@ int VerifyKeys(void)
|
||||
if (key->name.empty()) {
|
||||
ConsoleSetTextColor(&ci_stdout, 3, true); // yellow
|
||||
ConsolePrint(&ci_stdout,
|
||||
fmt::format(FRUN(C_("rpcli", "WARNING: Key [{:d},{:d}] has no name. Skipping...")), sectIdx, keyIdx), true);
|
||||
fmt::format(FRUN(C_("rpcli", "WARNING: Key [{:d},{:d}] has no name. Skipping...")), sectIdx, keyIdx));
|
||||
ConsoleResetTextColor(&ci_stdout);
|
||||
ConsolePrintNewline(&ci_stdout);
|
||||
fflush(stdout);
|
||||
|
Loading…
Reference in New Issue
Block a user