support Control in .xoatrc

This commit is contained in:
Sean Pringle
2015-01-01 00:34:49 +10:00
parent 761ea77675
commit 85c0a419d9

View File

@@ -307,6 +307,13 @@ configure()
str += 5;
}
else
if ((strncmp(str, "Control", 7)) == 0)
{
modifier |= ControlMask;
fprintf(stderr, " [Control]");
str += 7;
}
else
{
break;
}