comparison src/video/ataricommon/SDL_atarievents.c @ 2034:59e1a50193aa

Oops, don't need to check that
author Patrice Mandin <patmandin@gmail.com>
date Wed, 20 Sep 2006 21:38:06 +0000
parents ddf89133aebc
children adf732f1f016
comparison
equal deleted inserted replaced
2033:b657f0bc72c2 2034:59e1a50193aa
115 } 115 }
116 116
117 void 117 void
118 Atari_PumpEvents(_THIS) 118 Atari_PumpEvents(_THIS)
119 { 119 {
120 static int first_time = 1; 120 Atari_InitializeEvents(_this);
121 if (first_time) {
122 Atari_InitializeEvents(_this);
123 first_time = 0;
124 }
125 121
126 /* Call choosen routine */ 122 /* Call choosen routine */
127 _this->PumpEvents(_this); 123 _this->PumpEvents(_this);
128 } 124 }
129 125