Added super modifier bit.

Edited during merge.
This commit is contained in:
Noel Cower
2013-05-23 13:22:27 +02:00
committed by Camilla Berglund
parent 3bcffba24a
commit eff85f9500
5 changed files with 13 additions and 0 deletions
+2
View File
@@ -70,6 +70,8 @@ int translateState(int state)
mods |= GLFW_MOD_CONTROL;
if (state & Mod1Mask)
mods |= GLFW_MOD_ALT;
if (state & Mod4Mask)
mods |= GLFW_MOD_SUPER;
return mods;
}