From 0f9da22c85ca39457d62614c21850d4f70201bf3 Mon Sep 17 00:00:00 2001 From: FunkyFr3sh Date: Fri, 14 Oct 2022 22:05:41 +0200 Subject: [PATCH] add all custom window messages to log --- src/debug.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/debug.c b/src/debug.c index aad49ef..83eabc7 100644 --- a/src/debug.c +++ b/src/debug.c @@ -1389,6 +1389,9 @@ char* dbg_mes_to_str(int id) case WM_DISPLAYCHANGE_DDRAW: return "WM_DISPLAYCHANGE_DDRAW"; case WM_SIZE_DDRAW: return "WM_SIZE_DDRAW"; case WM_MOVE_DDRAW: return "WM_MOVE_DDRAW"; + case WM_D3D9DEVICELOST: return "WM_D3D9DEVICELOST"; + case WM_WINEFULLSCREEN: return "WM_WINEFULLSCREEN"; + case WM_AUTORENDERER: return "WM_AUTORENDERER"; } return 0;