Linux fixes

- Commented out the tinythread hack from src/CMakeLists.txt
This commit is contained in:
jonasstrandstedt
2014-11-20 09:33:07 +01:00
parent 531bf86ddd
commit 561aa221d3
3 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ enum class KeyAction {
};
enum class KeyModifier {
None = 0,
NoModifier = 0,
Shift = GLFW_MOD_SHIFT,
Control = GLFW_MOD_CONTROL,
Alt = GLFW_MOD_ALT,
+8 -8
View File
@@ -40,14 +40,14 @@ enum class MouseButton {
Left = SGCT_MOUSE_BUTTON_LEFT,
Right = SGCT_MOUSE_BUTTON_RIGHT,
Middle = SGCT_MOUSE_BUTTON_MIDDLE,
Button1 = SGCT_MOUSE_BUTTON_1,
Button2 = SGCT_MOUSE_BUTTON_2,
Button3 = SGCT_MOUSE_BUTTON_3,
Button4 = SGCT_MOUSE_BUTTON_4,
Button5 = SGCT_MOUSE_BUTTON_5,
Button6 = SGCT_MOUSE_BUTTON_6,
Button7 = SGCT_MOUSE_BUTTON_7,
Button8 = SGCT_MOUSE_BUTTON_8,
//Button1 = SGCT_MOUSE_BUTTON_1,
//Button2 = SGCT_MOUSE_BUTTON_2,
//Button3 = SGCT_MOUSE_BUTTON_3,
//Button4 = SGCT_MOUSE_BUTTON_4,
//Button5 = SGCT_MOUSE_BUTTON_5,
//Button6 = SGCT_MOUSE_BUTTON_6,
//Button7 = SGCT_MOUSE_BUTTON_7,
//Button8 = SGCT_MOUSE_BUTTON_8,
ButtonLast = SGCT_MOUSE_BUTTON_LAST,
};