Fixed another build error

This commit is contained in:
WolverinDEV 2019-11-25 00:16:59 +01:00
parent 9db38414d2
commit f82041b9d2

View file

@ -145,7 +145,7 @@ namespace ppt {
export function key_pressed(code: string | SpecialKey) : boolean {
if(typeof(code) === 'string')
return current_state.code == code;
return typeof current_state[code] !== "undefined";
return current_state.special[code];
}
}