Skip to content

Commit

Permalink
- hotfix for iCUE change that made the barcnt detection break for CUE…
Browse files Browse the repository at this point in the history
….NET
  • Loading branch information
sll552 committed Jul 25, 2018
1 parent e0c8e5d commit d4afb07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Devices/KeyboardEffectDevice.cs
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public int GetDesiredBarCount()
barcnt = cnt;
}
}
return barcnt;
return barcnt > 0 ? barcnt : 21;
}
}
}

0 comments on commit d4afb07

Please sign in to comment.