Browse Source

Some key sequences seem to end with a tilde

tags/v0.9.3
Michael Brown 18 years ago
parent
commit
ae728f8d23
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/core/getkey.c

+ 1
- 1
src/core/getkey.c View File

69
 			continue;
69
 			continue;
70
 		if ( ! key )
70
 		if ( ! key )
71
 			key = KEY_ANSI ( character );
71
 			key = KEY_ANSI ( character );
72
-		if ( ( character >= 0x40 ) && ( character <= 0x4f ) )
72
+		if ( character >= 0x40 )
73
 			break;
73
 			break;
74
 	}
74
 	}
75
 
75
 

Loading…
Cancel
Save