From 05c71da9c1c7f20f874246cf147d2551cd91a9d3 Mon Sep 17 00:00:00 2001 From: Kristian Sloth Lauszus Date: Tue, 14 Apr 2015 02:02:05 +0200 Subject: [PATCH] Replace boolean with bool Please see: https://github.com/felis/USB_Host_Shield_2.0/commit/bd8c8e740419095f3c1d8875d199e16858058899 --- XBOXONE.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/XBOXONE.h b/XBOXONE.h index 02efbf21..11710fcf 100644 --- a/XBOXONE.h +++ b/XBOXONE.h @@ -93,7 +93,7 @@ public: * @param pid The device's PID. * @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); }; /**@}*/