summaryrefslogtreecommitdiff
path: root/src/common/logging/text_formatter.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2018-08-22 00:37:59 -0400
committerGravatar GitHub2018-08-22 00:37:59 -0400
commit92b85fad70084d8f37a97939cbb18e131f531b11 (patch)
treef9c9c68079dc08a21fb8e0fa88151a9f63c7f611 /src/common/logging/text_formatter.cpp
parentMerge pull request #1151 from bunnei/revert-4a2ee191 (diff)
parentlogging/text_formatter: Use empty braces for initializing CONSOLE_SCREEN_BUFF... (diff)
downloadyuzu-92b85fad70084d8f37a97939cbb18e131f531b11.tar.gz
yuzu-92b85fad70084d8f37a97939cbb18e131f531b11.tar.xz
yuzu-92b85fad70084d8f37a97939cbb18e131f531b11.zip
Merge pull request #1147 from lioncash/warn
logging/text_formatter: Use empty braces for initializing CONSOLE_SCREEN_BUFFER_INFO instance
Diffstat (limited to 'src/common/logging/text_formatter.cpp')
-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) {
42 return; 42 return;
43 } 43 }
44 44
45 CONSOLE_SCREEN_BUFFER_INFO original_info = {0}; 45 CONSOLE_SCREEN_BUFFER_INFO original_info = {};
46 GetConsoleScreenBufferInfo(console_handle, &original_info); 46 GetConsoleScreenBufferInfo(console_handle, &original_info);
47 47
48 WORD color = 0; 48 WORD color = 0;