GamePlayer seems to be forced to quit pressing "end key".

The code to check for it was very weak... causing apple key to quit it too.
This commit is contained in:
Ton Roosendaal
2004-11-10 15:04:13 +00:00
parent 48121a0b6a
commit 6ea962923a

View File

@@ -120,7 +120,7 @@ bool GPC_KeyboardDevice::ConvertEvent(int incode, int val)
}
}
}
} else {
} else if(kxevent==KX_ENDKEY) {
exit(1);
}
return result;