1
0
Fork 0

(svn r19861) -Fix (r19814): Silence a warning.

release/1.1
frosch 2010-05-19 18:38:18 +00:00
parent 18b3085246
commit e864701693
1 changed files with 1 additions and 1 deletions

View File

@ -332,7 +332,7 @@ static void PollEvent()
if (prev_button_state != mouse_b) {
uint diff = prev_button_state ^ mouse_b;
while (diff != 0) {
int button = FindFirstBit(diff);
uint button = FindFirstBit(diff);
ClrBit(diff, button);
if (HasBit(mouse_b, button)) {
/* Pressed mouse button */