svkaiser / Doom64EX

Doom64EX is a reverse-engineering project aimed to recreate Doom64 as close as possible with additional modding features.
http://doom64ex.wordpress.com/
GNU General Public License v2.0
239 stars 49 forks source link

Enable ^ to toggle console (in addition to `) #60

Closed Manuel-K closed 7 years ago

Manuel-K commented 7 years ago

I've never been able to access the console with my QWERTZ keyboard. This adds ^ as an additional key to toggle the console.

Disclaimer: I don't know if this causes trouble for anything else. ^ seems to be only used as a character in src/engine/fmt/format.h as center alignment character.

pinkwah commented 7 years ago

Thanks.

Fixed it in a different way by using SDL Scancodes (see b09f03f3de81c914f25402cb4031d3ed3b99ad86). This will work for all keyboard layouts, not just US and German. :wink:

Manuel-K commented 7 years ago

Works.