diff options
author | bunnei <bunneidev@gmail.com> | 2018-08-22 06:37:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-22 06:37:59 +0200 |
commit | 92b85fad70084d8f37a97939cbb18e131f531b11 (patch) | |
tree | f9c9c68079dc08a21fb8e0fa88151a9f63c7f611 | |
parent | Merge pull request #1151 from bunnei/revert-4a2ee191 (diff) | |
parent | logging/text_formatter: Use empty braces for initializing CONSOLE_SCREEN_BUFFER_INFO instance (diff) | |
download | yuzu-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 |
Diffstat (limited to '')
-rw-r--r-- | src/common/logging/text_formatter.cpp | 2 |
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; |