07-02-2021, 04:04 PM
Hi! I'm glad using tcc solved the compatibility problems.
Regarding redefining ESC, yes, you can disable it by remapping INPUT_QUIT to scancode 0 after creating the main window:
Please take a look here for further information about input remapping:
Windowing - redefining inputs
Regarding redefining ESC, yes, you can disable it by remapping INPUT_QUIT to scancode 0 after creating the main window:
Code:
TLN_CreateWindow (NULL, 0);
...
TLN_DefineInputKey(PLAYER1, INPUT_QUIT, 0);
Please take a look here for further information about input remapping:
Windowing - redefining inputs