mirror of
https://git.checksum.fail/alec/mujs.git
synced 2025-12-10 13:09:57 +02:00
13 lines
174 B
HolyC
13 lines
174 B
HolyC
Bool @input_key_down(I64 sc)
|
|
{
|
|
return Bt(kbd.down_bitmap, sc);
|
|
}
|
|
|
|
U0 input_key_down()
|
|
{
|
|
PUSH_SYSV_REGS
|
|
GET_SYSV_ARGS
|
|
@input_key_down(p0);
|
|
POP_SYSV_REGS
|
|
}
|