mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-27 15:03:01 +00:00
GUI: C219 in sample editor
This commit is contained in:
parent
eff22ae7b9
commit
fccb6aff6e
1 changed files with 16 additions and 0 deletions
|
@ -320,6 +320,22 @@ void FurnaceGUI::drawSampleEdit() {
|
||||||
if (sample->samples>65535) {
|
if (sample->samples>65535) {
|
||||||
SAMPLE_WARN(warnLength,"C140: maximum sample length is 65535");
|
SAMPLE_WARN(warnLength,"C140: maximum sample length is 65535");
|
||||||
}
|
}
|
||||||
|
if (dispatch!=NULL) {
|
||||||
|
MAX_RATE("C140",dispatch->rate);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case DIV_SYSTEM_C219:
|
||||||
|
if (sample->loop) {
|
||||||
|
if (sample->loopStart&1 || sample->loopEnd&1) {
|
||||||
|
SAMPLE_WARN(warnLoopPos,"C219: loop must be a multiple of 2");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (sample->samples>131072) {
|
||||||
|
SAMPLE_WARN(warnLength,"C219: maximum sample length is 131072");
|
||||||
|
}
|
||||||
|
if (dispatch!=NULL) {
|
||||||
|
MAX_RATE("C219",dispatch->rate);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue