Commit 2ed87f33 by Rémi Verschelde

Workaround missing WM_TOUCH on mingw-w64 < 4.0

parent 3f2d806b
......@@ -63,12 +63,11 @@ __attribute__((visibility("default"))) DWORD NvOptimusEnablement = 0x00000001;
#endif
}
#ifndef WM_MOUSEHWHEEL
#define WM_MOUSEHWHEEL 0x020e
// Workaround mingw-w64 < 4.0 bug
#ifndef WM_TOUCH
#define WM_TOUCH 576
#endif
//#define STDOUT_FILE
extern HINSTANCE godot_hinstance;
void RedirectIOToConsole() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment