mirror of
https://github.com/tildearrow/furnace.git
synced 2025-01-03 06:01:29 +00:00
Merge branch 'master' of github.com:tildearrow/furnace
This commit is contained in:
commit
ec796fc89c
1 changed files with 12 additions and 0 deletions
|
@ -463,6 +463,18 @@ const char* DivEngine::getSongSystemName() {
|
|||
return "Sega Genesis Extended Channel 3";
|
||||
}
|
||||
|
||||
if (song.system[0]==DIV_SYSTEM_OPLL && song.system[1]==DIV_SYSTEM_SMS) {
|
||||
return "NTSC-J Sega Master System";
|
||||
}
|
||||
if (song.system[0]==DIV_SYSTEM_OPLL_DRUMS && song.system[1]==DIV_SYSTEM_SMS) {
|
||||
return "NTSC-J Sega Master System + drums";
|
||||
}
|
||||
if (song.system[0]==DIV_SYSTEM_OPLL && song.system[1]==DIV_SYSTEM_AY8910) {
|
||||
return "MSX-MUSIC";
|
||||
}
|
||||
if (song.system[0]==DIV_SYSTEM_OPLL_DRUMS && song.system[1]==DIV_SYSTEM_AY8910) {
|
||||
return "MSX-MUSIC + drums";
|
||||
}
|
||||
if (song.system[0]==DIV_SYSTEM_C64_6581 && song.system[1]==DIV_SYSTEM_C64_6581) {
|
||||
return "Commodore 64 with dual 6581";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue