Skip to content

Commit

Permalink
Debug messages - take 3
Browse files Browse the repository at this point in the history
  • Loading branch information
yagisan committed Aug 16, 2006
1 parent 650045e commit ce9681f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions doomsday/engine/portable/src/sys_input.c
Expand Up @@ -273,12 +273,13 @@ int I_TranslateKeyCode(SDLKey sym)
*/
void I_PollEvents(void)
{
// Yagi
Con_Message("Entered I_PollEvents:");

SDL_Event event;
keyevent_t *e;

// Yagi
Con_Message("Entered I_PollEvents:");

while(SDL_PollEvent(&event))
{
switch (event.type)
Expand Down Expand Up @@ -333,9 +334,10 @@ Con_Message("Entered I_InitMouse:");
//===========================================================================
void I_InitJoystick(void)
{
int joycount;

// Yagi
Con_Message("Entered I_InitJoystick:");
int joycount;

if(ArgCheck("-nojoy"))
return;
Expand Down

0 comments on commit ce9681f

Please sign in to comment.