mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-23 21:15:11 +00:00
Fix typo
This commit is contained in:
parent
1ed6fdd405
commit
9898d824c0
1 changed files with 2 additions and 2 deletions
|
@ -569,7 +569,7 @@ void FurnaceGUI::drawSysConf(int chan, DivSystem type, unsigned int& flags, bool
|
||||||
case DIV_SYSTEM_OPL3:
|
case DIV_SYSTEM_OPL3:
|
||||||
case DIV_SYSTEM_OPL3_DRUMS: {
|
case DIV_SYSTEM_OPL3_DRUMS: {
|
||||||
ImGui::Text("Clock rate:");
|
ImGui::Text("Clock rate:");
|
||||||
if (ImGui::RadioButton("14.32MHz (MTSC)",(flags&255)==0)) {
|
if (ImGui::RadioButton("14.32MHz (NTSC)",(flags&255)==0)) {
|
||||||
copyOfFlags=(flags&(~255))|0;
|
copyOfFlags=(flags&(~255))|0;
|
||||||
}
|
}
|
||||||
if (ImGui::RadioButton("14.19MHz (PAL)",(flags&255)==1)) {
|
if (ImGui::RadioButton("14.19MHz (PAL)",(flags&255)==1)) {
|
||||||
|
@ -591,7 +591,7 @@ void FurnaceGUI::drawSysConf(int chan, DivSystem type, unsigned int& flags, bool
|
||||||
if (ImGui::RadioButton("16.9344MHz",(flags&255)==0)) {
|
if (ImGui::RadioButton("16.9344MHz",(flags&255)==0)) {
|
||||||
copyOfFlags=(flags&(~255))|0;
|
copyOfFlags=(flags&(~255))|0;
|
||||||
}
|
}
|
||||||
if (ImGui::RadioButton("14.32MHz (MTSC)",(flags&255)==1)) {
|
if (ImGui::RadioButton("14.32MHz (NTSC)",(flags&255)==1)) {
|
||||||
copyOfFlags=(flags&(~255))|1;
|
copyOfFlags=(flags&(~255))|1;
|
||||||
}
|
}
|
||||||
if (ImGui::RadioButton("14.19MHz (PAL)",(flags&255)==3)) {
|
if (ImGui::RadioButton("14.19MHz (PAL)",(flags&255)==3)) {
|
||||||
|
|
Loading…
Reference in a new issue