From c261db243e7de0a57445ed9bb036238a7171e572 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Wed, 17 Apr 2024 20:47:02 +0200 Subject: [PATCH] Windows: fix prototype mismatch Mismatched since commit acaf3fdfad319cea142ba58ce9214aec14715ff0. --- src/windows/console.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/windows/console.h b/src/windows/console.h index 32e89915..609f9bb3 100644 --- a/src/windows/console.h +++ b/src/windows/console.h @@ -3,6 +3,6 @@ void SetConsoleBackgroundColor(COLORREF color); void FlashConsoleBackground(int nFlashCount, int nFlashInterval, COLORREF color); -bool Console_Init(const bool bAnsiColor, const bool bWarn = true); +bool Console_Init(const bool bAnsiColor); bool Console_ColorInit(); bool Console_Shutdown();