summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-08-22 06:37:59 +0200
committerGitHub <noreply@github.com>2018-08-22 06:37:59 +0200
commit92b85fad70084d8f37a97939cbb18e131f531b11 (patch)
treef9c9c68079dc08a21fb8e0fa88151a9f63c7f611
parentMerge pull request #1151 from bunnei/revert-4a2ee191 (diff)
parentlogging/text_formatter: Use empty braces for initializing CONSOLE_SCREEN_BUFFER_INFO instance (diff)
downloadyuzu-92b85fad70084d8f37a97939cbb18e131f531b11.tar
yuzu-92b85fad70084d8f37a97939cbb18e131f531b11.tar.gz
yuzu-92b85fad70084d8f37a97939cbb18e131f531b11.tar.bz2
yuzu-92b85fad70084d8f37a97939cbb18e131f531b11.tar.lz
yuzu-92b85fad70084d8f37a97939cbb18e131f531b11.tar.xz
yuzu-92b85fad70084d8f37a97939cbb18e131f531b11.tar.zst
yuzu-92b85fad70084d8f37a97939cbb18e131f531b11.zip
-rw-r--r--src/common/logging/text_formatter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/logging/text_formatter.cpp b/src/common/logging/text_formatter.cpp
index 8583916a8..05437c137 100644
--- a/src/common/logging/text_formatter.cpp
+++ b/src/common/logging/text_formatter.cpp
@@ -42,7 +42,7 @@ void PrintColoredMessage(const Entry& entry) {
return;
}
- CONSOLE_SCREEN_BUFFER_INFO original_info = {0};
+ CONSOLE_SCREEN_BUFFER_INFO original_info = {};
GetConsoleScreenBufferInfo(console_handle, &original_info);
WORD color = 0;