You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when defining WITHOUT_BUTTON I got a compile error, bool accelerationEnabled undefined.
Looking at the code, the #endif included the declaration of accelerationEnabled;
by moving the #endif up one line, this fixed the problem.
#ifndef WITHOUT_BUTTON
volatile Button button;
bool doubleClickEnabled;
#endif
bool accelerationEnabled;
//#endif -- the was in the wrong place
The text was updated successfully, but these errors were encountered:
You must have a very old version as this was fixed over a year ago. You might want to check out the soligen2010 fork as it has other bug fixes and enhancements added to it as well.
On 3 Mar 2017, at 21:49, Dennis ***@***.***> wrote:
You must have a very old version as this was fixed over a year ago. You might want to check out the soligen2010 fork as it has other bug fixes and enhancements added to it as well.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub <#16 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/AD4bH5yDQ74d4NhT0Gub_4Bd0eLpJudDks5riIrUgaJpZM4MScwB>.
when defining WITHOUT_BUTTON I got a compile error, bool accelerationEnabled undefined.
Looking at the code, the #endif included the declaration of accelerationEnabled;
by moving the #endif up one line, this fixed the problem.
#ifndef WITHOUT_BUTTON
volatile Button button;
bool doubleClickEnabled;
#endif
bool accelerationEnabled;
//#endif -- the was in the wrong place
The text was updated successfully, but these errors were encountered: