浏览代码

Corrected old issue with mouse buttons on web

pull/189/head
Ray 8 年前
父节点
当前提交
3396743aba
共有 1 个文件被更改,包括 2 次插入7 次删除
  1. +2
    -7
      src/raylib.h

+ 2
- 7
src/raylib.h 查看文件

@ -176,13 +176,8 @@
// Mouse Buttons
#define MOUSE_LEFT_BUTTON 0
#if defined(PLATFORM_WEB)
#define MOUSE_RIGHT_BUTTON 2
#define MOUSE_MIDDLE_BUTTON 1
#else
#define MOUSE_RIGHT_BUTTON 1
#define MOUSE_MIDDLE_BUTTON 2
#endif
#define MOUSE_RIGHT_BUTTON 1
#define MOUSE_MIDDLE_BUTTON 2
// Touch points registered
#define MAX_TOUCH_POINTS 2

正在加载...
取消
保存