mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-23 04:55:13 +00:00
Fix formatting
This commit is contained in:
parent
677f642d9a
commit
39fadd23ac
1 changed files with 2 additions and 2 deletions
|
@ -4176,12 +4176,12 @@ SafeWriter* DivEngine::saveFur(bool notPrimary) {
|
|||
// fail if values are out of range
|
||||
/*
|
||||
if (subSong->ordersLen>DIV_MAX_PATTERNS) {
|
||||
logE(fmt::sprintf("maximum song length is %d!",DIV_MAX_PATTERNS).c_str());
|
||||
logE("maximum song length is %d!",DIV_MAX_PATTERNS);
|
||||
lastError=fmt::sprintf("maximum song length is %d",DIV_MAX_PATTERNS);
|
||||
return NULL;
|
||||
}
|
||||
if (subSong->patLen>DIV_MAX_ROWS) {
|
||||
logE(fmt::sprintf("maximum pattern length is %d!",DIV_MAX_ROWS).c_str());
|
||||
logE("maximum pattern length is %d!",DIV_MAX_ROWS);
|
||||
lastError=fmt::sprintf("maximum pattern length is %d",DIV_MAX_ROWS);
|
||||
return NULL;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue