summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--platform/windows/joypad_windows.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/platform/windows/joypad_windows.cpp b/platform/windows/joypad_windows.cpp
index 0cff12ca8c..50f090d2b0 100644
--- a/platform/windows/joypad_windows.cpp
+++ b/platform/windows/joypad_windows.cpp
@@ -70,7 +70,8 @@ JoypadWindows::JoypadWindows(HWND *hwnd) {
HRESULT result;
result = DirectInput8Create(GetModuleHandle(nullptr), DIRECTINPUT_VERSION, IID_IDirectInput8, (void **)&dinput, nullptr);
if (FAILED(result)) {
- printf("failed init DINPUT: %ld\n", result);
+ printf("Couldn't initialize DirectInput: %ld\n", result);
+ printf("Rebooting your PC may solve this issue.\n");
}
probe_joypads();
}