This commit is contained in:
tildearrow 2022-02-04 21:35:32 -05:00
parent 6b040084e0
commit 58b14fccd6
2 changed files with 2 additions and 2 deletions

View File

@ -146,7 +146,7 @@ struct DivSong {
// - 0: Genesis NTSC (7.67MHz)
// - 1: Genesis PAL (7.61MHz)
// - 2: 8MHz
// - 3: AtGames Genesis (???)
// - 3: AtGames Genesis (6.13MHz)
// - YM2151:
// - bit 0-1: clock rate
// - 0: 3.58MHz (NTSC)

View File

@ -5176,7 +5176,7 @@ bool FurnaceGUI::loop() {
if (ImGui::RadioButton("FM Towns (8MHz)",(flags&3)==2)) {
e->setSysFlags(i,(flags&0x80000000)|2);
}
if (ImGui::RadioButton("AtGames Genesis",(flags&3)==3)) {
if (ImGui::RadioButton("AtGames Genesis (6.13MHz)",(flags&3)==3)) {
e->setSysFlags(i,(flags&0x80000000)|3);
}
bool ladder=flags&0x80000000;