mirror of
https://github.com/glfw/glfw.git
synced 2026-09-23 00:59:48 +00:00
Added super modifier bit.
Edited during merge.
This commit is contained in:
committed by
Camilla Berglund
parent
3bcffba24a
commit
eff85f9500
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user