Minor change in keyboard.cpp.

This commit is contained in:
Jonas 'Sortie' Termansen 2011-08-22 11:13:24 +02:00
parent 8d86dc6f6a
commit 1fd4e6b63e
1 changed files with 1 additions and 1 deletions

View File

@ -666,7 +666,7 @@ namespace Sortix
uint32_t CodePoint = Layouts::GetCodePoint(Scancode);
bool KeyUp = (Scancode & 0x80) > 0;
bool KeyUp = (Scancode & 0x80);
if ( KeyUp ) { CodePoint |= DEPRESSED; }