mirror of https://github.com/PCSX2/pcsx2.git
lilypad: Use l length modifier for wide character string
w is Windows specific. Fixes a gcc and clang warning.
This commit is contained in:
parent
f1eff358da
commit
eb8ede38cf
|
@ -574,7 +574,7 @@ void Update(unsigned int port, unsigned int slot)
|
|||
}
|
||||
if (dev->attached && dev->pads[0][0][config.padConfigs[0][0].type].numBindings > 0) {
|
||||
if (!anyDeviceActiveAndBound) {
|
||||
fprintf(stderr, "LilyPad: A device(%ws) has been attached with bound controls.\n", dev->displayName);
|
||||
fprintf(stderr, "LilyPad: A device(%ls) has been attached with bound controls.\n", dev->displayName);
|
||||
anyDeviceActiveAndBound = true;
|
||||
}
|
||||
currentDeviceActiveAndBound = true;
|
||||
|
|
Loading…
Reference in New Issue