From 78142880853498106cb355fe3e5fb64de8d19535 Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Mon, 26 Jun 2023 21:52:46 +0200 Subject: [PATCH] fix type --- ISLE/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ISLE/main.cpp b/ISLE/main.cpp index 9250336c..7c56be2e 100644 --- a/ISLE/main.cpp +++ b/ISLE/main.cpp @@ -222,7 +222,7 @@ LRESULT WINAPI WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) g_targetDepth = wParam; } else { - unsigned char valid = FALSE; + BOOL valid = FALSE; if (targetWidth == g_targetWidth && targetHeight == g_targetHeight && g_targetDepth == wParam) { valid = TRUE; }