1
0
Fork 0

Changed keyboard modifiers

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@706
This commit is contained in:
Sjoerd van der Berg 2003-03-02 21:50:42 +00:00
parent fe1b5109f5
commit b36c835664
2 changed files with 5 additions and 5 deletions

View file

@ -173,8 +173,8 @@ void CPU_Init(Section* sec) {
SetCPU16bit();
KEYBOARD_AddEvent(KBD_f11,CTRL_PRESSED,CPU_CycleDecrease);
KEYBOARD_AddEvent(KBD_f12,CTRL_PRESSED,CPU_CycleIncrease);
KEYBOARD_AddEvent(KBD_f11,KBD_MOD_CTRL,CPU_CycleDecrease);
KEYBOARD_AddEvent(KBD_f12,KBD_MOD_CTRL,CPU_CycleIncrease);
CPU_Cycles=0;
CPU_CycleMax=section->Get_int("cycles");;