diff options
| author | 2016-04-26 11:14:09 -0400 | |
|---|---|---|
| committer | 2016-04-26 11:14:09 -0400 | |
| commit | dc85827687c02ebaa218aa3f2c127a3d4110e6fb (patch) | |
| tree | 145b1ca5a5def6f08c5e8eb396afce5e06cf6be4 /src/osd | |
| parent | a1b8226a19503c4be2098094db831d70186ee97b (diff) | |
Clean up extended ASCII (nw)
Diffstat (limited to 'src/osd')
| -rw-r--r-- | src/osd/modules/input/input_winhybrid.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osd/modules/input/input_winhybrid.cpp b/src/osd/modules/input/input_winhybrid.cpp index c74eb730b71..22534b75453 100644 --- a/src/osd/modules/input/input_winhybrid.cpp +++ b/src/osd/modules/input/input_winhybrid.cpp @@ -276,7 +276,7 @@ private: //----------------------------------------------------------------------------- // Enum each PNP device using WMI and check each device ID to see if it contains - // "IG_" (ex. "VID_045E&PID_028E&IG_00"). If it does, then it’s an XInput device + // "IG_" (ex. "VID_045E&PID_028E&IG_00"). If it does, then it's an XInput device // Unfortunately this information can not be found by just using DirectInput. // Checking against a VID/PID of 0x028E/0x045E won't find 3rd party or future // XInput devices. @@ -376,7 +376,7 @@ private: hr = pDevices[iDevice]->Get(bstrDeviceID.get(), 0L, &var, nullptr, nullptr); if (SUCCEEDED(hr) && var.vt == VT_BSTR && var.bstrVal != nullptr) { - // Check if the device ID contains "IG_". If it does, then it’s an XInput device + // Check if the device ID contains "IG_". If it does, then it's an XInput device // Unfortunately this information can not be found by just using DirectInput if (wcsstr(var.bstrVal, L"IG_")) { |
