Change u8 to bool

This commit is contained in:
Kartik 2017-07-09 17:34:02 +05:30 committed by GitHub
parent 558125436a
commit 5f28a4b0be

View File

@ -43,6 +43,6 @@ Result PTMU_GetTotalStepCount(u32 *steps);
/**
* @brief Gets whether the adapter is plugged in or not
* @param out Pointer to write the adapter state to. (0 = not plugged in, 1 = plugged in)
* @param out Pointer to write the adapter state to.
*/
Result PTMU_GetAdapterState(u8 *out);
Result PTMU_GetAdapterState(bool *out);