#11963 - valkyrie_pf - Sat Oct 25, 2003 4:35 am
My code:
void QueryKey()
{ if(F_CTRLINPUT_A_PRESSED)
{
.........
}
}
void vblFunc()
{ QueryKey();
..........
}
when i press A(the KeyPad),it input many A.
I want only an A when I press A(the KeyPad) once.
How Can I Do ?
void QueryKey()
{ if(F_CTRLINPUT_A_PRESSED)
{
.........
}
}
void vblFunc()
{ QueryKey();
..........
}
when i press A(the KeyPad),it input many A.
I want only an A when I press A(the KeyPad) once.
How Can I Do ?