-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The "tune" command wasn't actually applying the desired locks because it was locking a bitwise 'and' of values 1 & 2, which gives a value of 0. This should have been a bitwise or of the values. Also changed the associated 'unlock' functions so that the "tune" command unlocks the same locks as it locked. Created a new #define to represent the locks to locks for the "tune" command to help make it clearer that that the lock and unlock functions should alter the same locks.
- Loading branch information
1 parent
1784d2e
commit 06c333a
Showing
3 changed files
with
44 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters