comparison src/video/directfb/SDL_DirectFB_events.c @ 286:3ea69fd0b095

Updated for DirectFB 0.9.9
author Sam Lantinga <slouken@libsdl.org>
date Tue, 26 Feb 2002 14:38:53 +0000
parents e8157fcb3114
children f6ffac90895c
comparison
equal deleted inserted replaced
285:e5a489f0288c 286:3ea69fd0b095
54 54
55 void DirectFB_PumpEvents (_THIS) 55 void DirectFB_PumpEvents (_THIS)
56 { 56 {
57 DFBInputEvent evt; 57 DFBInputEvent evt;
58 58
59 while (HIDDEN->inputbuffer->GetEvent (HIDDEN->inputbuffer, &evt) == DFB_OK) 59 while (HIDDEN->eventbuffer->GetEvent (HIDDEN->eventbuffer,
60 DFB_EVENT (&evt)) == DFB_OK)
60 { 61 {
61 SDL_keysym keysym; 62 SDL_keysym keysym;
62 63
63 switch (evt.type) 64 switch (evt.type)
64 { 65 {