attribution

This commit is contained in:
tildearrow 2022-02-13 18:04:23 -05:00
parent 9ea510c351
commit f11377ba1a
3 changed files with 5 additions and 3 deletions

View File

@ -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) - 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 - bug/quirk implementation for increased playback accuracy
- VGM and audio file export - 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: - additional features on top:
- FM macros! - FM macros!
- arbitrary pitch samples - arbitrary pitch samples

View File

@ -3469,7 +3469,7 @@ void FurnaceGUI::drawPattern() {
ImGui::End(); ImGui::End();
} }
const char* aboutLine[56]={ const char* aboutLine[57]={
"tildearrow", "tildearrow",
"is proud to present", "is proud to present",
"", "",
@ -3494,6 +3494,7 @@ const char* aboutLine[56]={
"MAME AY-3-8910 by Couriersud", "MAME AY-3-8910 by Couriersud",
"with AY8930 fixes by Eulous", "with AY8930 fixes by Eulous",
"MAME SAA1099 by Juergen Buchmueller and Manuel Abadia", "MAME SAA1099 by Juergen Buchmueller and Manuel Abadia",
"SAASound",
"SameBoy by Lior Halphon", "SameBoy by Lior Halphon",
"Mednafen PCE", "Mednafen PCE",
"puNES by FHorse", "puNES by FHorse",
@ -3602,7 +3603,7 @@ void FurnaceGUI::drawAbout() {
aboutScroll+=2+(peakMix>0.78)*3; aboutScroll+=2+(peakMix>0.78)*3;
aboutSin+=1+(peakMix>0.75)*2; aboutSin+=1+(peakMix>0.75)*2;
if (aboutSin>=2400) aboutSin-=2400; 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; if (ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows)) curWindow=GUI_WINDOW_ABOUT;
ImGui::End(); ImGui::End();

View File

@ -126,6 +126,7 @@ bool pVersion(String) {
printf("- MAME SN76496 emulation core by Nicola Salmoria (BSD 3-clause)\n"); 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 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("- 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("- SameBoy by Lior Halphon (MIT)\n");
printf("- Mednafen PCE by Mednafen Team (GPLv2)\n"); printf("- Mednafen PCE by Mednafen Team (GPLv2)\n");
printf("- puNES by FHorse (GPLv2)\n"); printf("- puNES by FHorse (GPLv2)\n");