fix noMultiSystem setting being inverted
This commit is contained in:
parent
185b283ef6
commit
2b4b320a74
2 changed files with 4 additions and 4 deletions
|
|
@ -848,7 +848,7 @@ void DivEngine::createNew(const int* description, String sysName) {
|
|||
initSongWithDesc(description);
|
||||
}
|
||||
if (sysName=="") {
|
||||
song.systemName=getSongSystemLegacyName(song,getConfInt("noMultiSystem",0));
|
||||
song.systemName=getSongSystemLegacyName(song,!getConfInt("noMultiSystem",0));
|
||||
} else {
|
||||
song.systemName=sysName;
|
||||
}
|
||||
|
|
@ -3137,7 +3137,7 @@ bool DivEngine::init() {
|
|||
}
|
||||
String sysName=getConfString("initialSysName","");
|
||||
if (sysName=="") {
|
||||
song.systemName=getSongSystemLegacyName(song,getConfInt("noMultiSystem",0));
|
||||
song.systemName=getSongSystemLegacyName(song,!getConfInt("noMultiSystem",0));
|
||||
} else {
|
||||
song.systemName=sysName;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue