1
0
mirror of https://github.com/mist-devel/mist-firmware.git synced 2026-02-04 23:24:45 +00:00

Color modes working again. Fixed Minimig OSD.

This commit is contained in:
jcgamestoy
2013-08-31 11:31:53 +00:00
parent ffefe19116
commit 2f0cbdcb88

View File

@@ -345,7 +345,8 @@ void user_io_osd_key_enable(char on) {
static char key_used_by_osd(unsigned short s) {
if((s & OSD_LOC) && !(s & 0xff)) return true; // this key is only used in OSD and has no keycode
return(osd_eats_keys);
if(!osd_eats_keys) return false;
return ((s & OSD_LOC) != 0);
}
void user_io_kbd(unsigned char m, unsigned char *k) {