Skip to content

Commit

Permalink
Tweak to ensure Windows support
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexPoilrouge committed Jun 17, 2020
1 parent 56eaf2b commit 26a5623
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/console.c
Original file line number Diff line number Diff line change
Expand Up @@ -857,7 +857,7 @@ boolean CON_Responder(event_t *ev)
return true;

// ctrl modifier -- changes behavior, adds shortcuts
if (ctrldown)
if (ctrldown && !altdown)
{
// show all cvars/commands that match what we have inputted
if (key == KEY_TAB)
Expand Down
6 changes: 3 additions & 3 deletions src/hu_stuff.c
Original file line number Diff line number Diff line change
Expand Up @@ -174,13 +174,13 @@ char french_shiftxform[] =
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
31,
' ','§', //shift-!
' ','$', //shift-!
'3', //shift-"
'#', '$', '%',
'1', //shift-&
'4', // shift-'
'5', // shift-(
'°', // shift-)
')', // shift-)
'*', '+',
'?', // shift-,
'6', // shift--
Expand Down Expand Up @@ -249,7 +249,7 @@ char french_altgrxform[] ={
136, 137,
'`',
139, 140,
'ù'
KEY_FR_U_GRAVE
};

//fallback for special letter non displayable in the game (i.e.: 'é','à',etc.)
Expand Down

0 comments on commit 26a5623

Please sign in to comment.