rename system to platform

easier to understand
This commit is contained in:
tildearrow 2022-01-16 01:17:30 -05:00
parent 6fe8e73d7f
commit 45b6c19867
10 changed files with 22 additions and 22 deletions

View file

@ -1930,8 +1930,8 @@ SafeWriter* DivEngine::saveFur() {
SafeWriter* DivEngine::saveDMF() {
// fail if more than one system
if (song.systemLen!=1) {
logE("cannot save multiple platforms in this format!\n");
lastError="multiple platforms not possible on .dmf";
logE("cannot save multiple systems in this format!\n");
lastError="multiple systems not possible on .dmf";
return NULL;
}
// fail if this is an YMU759 song
@ -1942,8 +1942,8 @@ SafeWriter* DivEngine::saveDMF() {
}
// fail if the system is Furnace-exclusive
if (systemToFile(song.system[0])&0x80) {
logE("cannot save Furnace-exclusive platform song!\n");
lastError="this platform is not possible on .dmf";
logE("cannot save Furnace-exclusive system song!\n");
lastError="this system is not possible on .dmf";
return NULL;
}