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
@@ -219,6 +219,8 @@ static const char* get_mods_name(int mods)
strcat(name, " control");
if (mods & GLFW_MOD_ALT)
strcat(name, " alt");
if (mods & GLFW_MOD_SUPER)
strcat(name, " super");
return name;
}