From fcc3c353fd250994dec73c4aa4bd66d976c910bb Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Wed, 3 Apr 2024 23:39:26 +0200 Subject: Separate gsl stuff, and use std-like int types --- deimos/core/os_win32.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'deimos/core/os_win32.cpp') diff --git a/deimos/core/os_win32.cpp b/deimos/core/os_win32.cpp index 07d3247..3f724ef 100644 --- a/deimos/core/os_win32.cpp +++ b/deimos/core/os_win32.cpp @@ -29,7 +29,7 @@ public: m_stderr{::GetStdHandle(STD_ERROR_HANDLE)} {} - void Write(OsConsoleType type, const char* data, int64 length) override + void Write(OsConsoleType type, const char* data, int64_t length) override { ::WriteConsoleA(Handle(type), data, (DWORD)length, nullptr, nullptr); } -- cgit