win: compile fix

This commit is contained in:
Flyinghead 2019-03-29 17:34:16 +01:00
parent daf4980fc8
commit 80626b1f4e
1 changed files with 2 additions and 2 deletions

View File

@ -234,7 +234,7 @@ public:
WinKbGamepadDevice(int maple_port) : GamepadDevice(maple_port, "win32")
{
_name = "Keyboard";
_unique_id = "win_keyboard;
_unique_id = "win_keyboard";
if (!find_mapping())
input_mapper = new KbInputMapping();
}
@ -261,7 +261,7 @@ public:
WinMouseGamepadDevice(int maple_port) : GamepadDevice(maple_port, "win32")
{
_name = "Mouse";
_unique_id = "win_mouse;
_unique_id = "win_mouse";
if (!find_mapping())
input_mapper = new MouseInputMapping();
}