Browse Source

Fixed Linux resize and scrolling issues.

seanpaultaylor 11 years ago
parent
commit
5b6c9ea710
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gameplay/src/PlatformLinux.cpp

+ 1 - 1
gameplay/src/PlatformLinux.cpp

@@ -1255,7 +1255,7 @@ int Platform::enterMessagePump()
                             int wheelDelta;
                             if (evt.xbutton.button == 4)
                                 wheelDelta = 1;
-                            else if (evt.xbutton.button == Button5)
+                            else if (evt.xbutton.button == 5)
                                 wheelDelta = -1;
                             else
                                 wheelDelta = 0;