Fixed type of formatting argument

This commit is contained in:
Christoph "baka0815" Schwerdtfeger 2018-08-25 10:55:52 +02:00
parent 80af04421a
commit 8593c209d9
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ void os_SetupInput()
// Multiple controllers with the same device, check for multiple button assignments
if (input_evdev_button_duplicate_button(evdev_controllers[i].mapping, evdev_controllers[port].mapping))
{
printf("WARNING: One or more button(s) of this device is also used in the configuration of input device %d (mapping: %s)\n", i, evdev_controllers[i].mapping->name);
printf("WARNING: One or more button(s) of this device is also used in the configuration of input device %d (mapping: %s)\n", i, evdev_controllers[i].mapping->name.c_str());
}
}
}