소스 검색

Engage brain: since when was zero >= 0x80 ?

tags/v0.9.3
Michael Brown 18 년 전
부모
커밋
f58f193633
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      src/arch/i386/firmware/pcbios/bios_console.c

+ 1
- 1
src/arch/i386/firmware/pcbios/bios_console.c 파일 보기

@@ -249,7 +249,7 @@ static int bios_getchar ( void ) {
249 249
 	character = ( keypress & 0xff );
250 250
 
251 251
 	/* If it's a normal character, just return it */
252
-	if ( character < 0x80 )
252
+	if ( character && ( character < 0x80 ) )
253 253
 		return character;
254 254
 
255 255
 	/* Otherwise, check for a special key that we know about */

Loading…
취소
저장