TY Moros
| 7860 | |
| 7861 | //TY Moros |
| 7862 | static EM_BOOL wheel_callback(int eventType, const EmscriptenWheelEvent* e, void* userData) |
| 7863 | { |
| 7864 | if (eventType == EMSCRIPTEN_EVENT_WHEEL) |
| 7865 | ptrPGE->olc_UpdateMouseWheel(-1 * e->deltaY); |
| 7866 | |
| 7867 | return EM_TRUE; |
| 7868 | } |
| 7869 | |
| 7870 | //TY Bispoo |
| 7871 | static EM_BOOL touch_callback(int eventType, const EmscriptenTouchEvent* e, void* userData) |
nothing calls this directly
no test coverage detected