You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was struggling to register a command using ICSC_CATCH_ALL, it would not work until i figured out that
define ICSC_CATCH_ALL 0xFF
was causing the issue
I changed to 0x7F (ASCII 127 which is the 'DEL' character) and everything worked beautifully.
I'm not a very good C/C++ programmer but I am guessing this is because #define isn't treating it as an unsigned char and thus limiting to the non-extended ASCII table.
The text was updated successfully, but these errors were encountered:
I was struggling to register a command using ICSC_CATCH_ALL, it would not work until i figured out that
define ICSC_CATCH_ALL 0xFF
was causing the issue
I changed to 0x7F (ASCII 127 which is the 'DEL' character) and everything worked beautifully.
I'm not a very good C/C++ programmer but I am guessing this is because #define isn't treating it as an unsigned char and thus limiting to the non-extended ASCII table.
The text was updated successfully, but these errors were encountered: