From 344712a23ba3fb3858e65a183ebaa2c371dd70e7 Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Mon, 31 Dec 2018 00:03:18 +0100 Subject: [PATCH] Use SYSTEMTIME type instead of _SYSTEMTIME struct --- Source/logging.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/logging.cpp b/Source/logging.cpp index 128ca724d..5a3235e93 100644 --- a/Source/logging.cpp +++ b/Source/logging.cpp @@ -175,7 +175,7 @@ void __cdecl log_dump_computer_info() { char Buffer[64]; // [esp+0h] [ebp-88h] VS_FIXEDFILEINFO file_info; // [esp+40h] [ebp-48h] - _SYSTEMTIME SystemTime; // [esp+74h] [ebp-14h] + SYSTEMTIME SystemTime; // [esp+74h] [ebp-14h] DWORD pcbBuffer; // [esp+84h] [ebp-4h] GetLocalTime(&SystemTime);