diff --git a/README.md b/README.md index 1edc53d5..abac9c09 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ this is a work-in-progress chiptune tracker compatible with DefleMask modules (. - clean-room design (zero reverse-engineered code and zero decompilation; using official DMF specs, guesswork and ABX tests only) - bug/quirk implementation for increased playback accuracy - VGM and audio file export -- accurate emulation cores whether possible (Nuked, MAME, SameBoy, Mednafen PCE, puNES, reSID, Stella and ymfm) +- accurate emulation cores whether possible (Nuked, MAME, SameBoy, Mednafen PCE, puNES, reSID, Stella, SAASound and ymfm) - additional features on top: - FM macros! - arbitrary pitch samples diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index 5a5f1f59..7f89940e 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -3469,7 +3469,7 @@ void FurnaceGUI::drawPattern() { ImGui::End(); } -const char* aboutLine[56]={ +const char* aboutLine[57]={ "tildearrow", "is proud to present", "", @@ -3494,6 +3494,7 @@ const char* aboutLine[56]={ "MAME AY-3-8910 by Couriersud", "with AY8930 fixes by Eulous", "MAME SAA1099 by Juergen Buchmueller and Manuel Abadia", + "SAASound", "SameBoy by Lior Halphon", "Mednafen PCE", "puNES by FHorse", @@ -3602,7 +3603,7 @@ void FurnaceGUI::drawAbout() { aboutScroll+=2+(peakMix>0.78)*3; aboutSin+=1+(peakMix>0.75)*2; if (aboutSin>=2400) aboutSin-=2400; - if (aboutScroll>(42*56+scrH)) aboutScroll=-20; + if (aboutScroll>(42*57+scrH)) aboutScroll=-20; } if (ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows)) curWindow=GUI_WINDOW_ABOUT; ImGui::End(); diff --git a/src/main.cpp b/src/main.cpp index 4b150863..d994255f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -126,6 +126,7 @@ bool pVersion(String) { printf("- MAME SN76496 emulation core by Nicola Salmoria (BSD 3-clause)\n"); printf("- MAME AY-3-8910 emulation core by Couriersud (BSD 3-clause)\n"); printf("- MAME SAA1099 emulation core by Juergen Buchmueller and Manuel Abadia (BSD 3-clause)\n"); + printf("- SAASound (BSD 3-clause)\n"); printf("- SameBoy by Lior Halphon (MIT)\n"); printf("- Mednafen PCE by Mednafen Team (GPLv2)\n"); printf("- puNES by FHorse (GPLv2)\n");