Replace boolean with bool

Please see: bd8c8e7404
This commit is contained in:
Kristian Sloth Lauszus 2015-04-14 02:02:05 +02:00
parent 271520919b
commit 05c71da9c1

View file

@ -93,7 +93,7 @@ public:
* @param pid The device's PID. * @param pid The device's PID.
* @return Returns true if the device's VID and PID matches this driver. * @return Returns true if the device's VID and PID matches this driver.
*/ */
virtual boolean VIDPIDOK(uint16_t vid, uint16_t pid) { virtual bool VIDPIDOK(uint16_t vid, uint16_t pid) {
return (vid == XBOX_VID && pid == XBOX_ONE_PID); return (vid == XBOX_VID && pid == XBOX_ONE_PID);
}; };
/**@}*/ /**@}*/