--- Daodan/src/Patches/Win32.c 2014/05/04 18:17:11 1000 +++ Daodan/src/Patches/Win32.c 2021/10/24 02:50:48 1163 @@ -2,6 +2,7 @@ #include "../Daodan.h" #include "../Daodan_Config.h" +#include "Input.h" #include "Win32.h" #include "../Oni/Oni.h" @@ -104,10 +105,14 @@ static LRESULT CALLBACK DD_ONrPlatform_W SetCursor(NULL); return TRUE; } - + break; } - + + LRESULT res; + if (DDrInput_WindowProc(hWnd, uMsg, wParam, lParam, &res)) + return res; + return ONrPlatform_WindowProc(hWnd, uMsg, wParam, lParam); }