mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
Don't assert when unknown key seen; just ignore.
This commit is contained in:
parent
cfc00206c1
commit
30df2166ab
1 changed files with 2 additions and 2 deletions
|
@ -316,8 +316,8 @@ flipKey( XP_Key key, XP_Bool flip )
|
|||
case XP_CURSOR_KEY_ALTRIGHT:
|
||||
result = XP_CURSOR_KEY_ALTDOWN; break;
|
||||
default:
|
||||
XP_LOGF( "unexpected key: %s", XP_Key_2str(key) );
|
||||
XP_ASSERT(0);
|
||||
/* not en error -- but we don't modify the key */
|
||||
break;
|
||||
}
|
||||
}
|
||||
return result;
|
||||
|
|
Loading…
Reference in a new issue