Changeset - r15217:02b43e900750
[Not reviewed]
master
0 1 0
frosch - 14 years ago 2010-05-19 18:38:18
frosch@openttd.org
(svn r19861) -Fix (r19814): Silence a warning.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/video/allegro_v.cpp
Show inline comments
 
@@ -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 */
0 comments (0 inline, 0 general)