From d03855c655916abb3a54dbb206fdc00652a66be3 Mon Sep 17 00:00:00 2001 From: Themaister Date: Fri, 10 Jun 2011 17:47:16 +0200 Subject: [PATCH] Add some sanity logging. --- input/dinput.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/input/dinput.c b/input/dinput.c index a98497b927..a618adfd1e 100644 --- a/input/dinput.c +++ b/input/dinput.c @@ -116,7 +116,9 @@ sdl_dinput_t* sdl_dinput_init(void) goto error; } + SSNES_LOG("Enumerating DInput devices ...\n"); IDirectInput8_EnumDevices(di->ctx, DI8DEVCLASS_GAMECTRL, enum_joypad_cb, di, DIEDFL_ATTACHEDONLY); + SSNES_LOG("Done enumerating DInput devices ...\n"); return di;