mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-23 13:05:11 +00:00
Fix build
This commit is contained in:
parent
2ec4237076
commit
18b87dcfaf
2 changed files with 4 additions and 4 deletions
|
@ -458,13 +458,13 @@ class DivDispatch {
|
|||
* get minimum chip clock.
|
||||
* @return clock in Hz, or 0 if custom clocks are not supported.
|
||||
*/
|
||||
virtual unsigned int getClockRangeMin();
|
||||
virtual int getClockRangeMin();
|
||||
|
||||
/**
|
||||
* get maximum chip clock.
|
||||
* @return clock in Hz, or 0 if custom clocks are not supported.
|
||||
*/
|
||||
virtual unsigned int getClockRangeMax();
|
||||
virtual int getClockRangeMax();
|
||||
|
||||
/**
|
||||
* set the chip flags.
|
||||
|
|
|
@ -97,11 +97,11 @@ bool DivDispatch::getWantPreNote() {
|
|||
return false;
|
||||
}
|
||||
|
||||
unsigned int DivDispatch::getClockRangeMin() {
|
||||
int DivDispatch::getClockRangeMin() {
|
||||
return MIN_CUSTOM_CLOCK;
|
||||
}
|
||||
|
||||
unsigned int DivDispatch::getClockRangeMax() {
|
||||
int DivDispatch::getClockRangeMax() {
|
||||
return MAX_CUSTOM_CLOCK;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue