add attribution for SAA1099 core

This commit is contained in:
tildearrow 2022-01-16 01:47:19 -05:00
parent 85c7612194
commit 9193ec0f14
2 changed files with 5 additions and 3 deletions

View file

@ -1628,7 +1628,7 @@ void FurnaceGUI::drawPattern() {
ImGui::End(); ImGui::End();
} }
const char* aboutLine[54]={ const char* aboutLine[55]={
"tildearrow", "tildearrow",
"is proud to present", "is proud to present",
"", "",
@ -1651,6 +1651,7 @@ const char* aboutLine[54]={
"ymfm by Aaron Giles", "ymfm by Aaron Giles",
"MAME SN76496 by Nicola Salmoria", "MAME SN76496 by Nicola Salmoria",
"MAME AY-3-8910 by Couriersud", "MAME AY-3-8910 by Couriersud",
"MAME SAA1099 by Juergen Buchmueller and Manuel Abadia",
"SameBoy by Lior Halphon", "SameBoy by Lior Halphon",
"Mednafen PCE", "Mednafen PCE",
"puNES by FHorse", "puNES by FHorse",
@ -1734,7 +1735,7 @@ void FurnaceGUI::drawAbout() {
} }
} }
for (int i=0; i<54; i++) { for (int i=0; i<55; i++) {
double posX=(scrW*dpiScale/2.0)+(sin(double(i)*0.5+double(aboutScroll)/90.0)*120*dpiScale)-(ImGui::CalcTextSize(aboutLine[i]).x*0.5); double posX=(scrW*dpiScale/2.0)+(sin(double(i)*0.5+double(aboutScroll)/90.0)*120*dpiScale)-(ImGui::CalcTextSize(aboutLine[i]).x*0.5);
double posY=(scrH-aboutScroll+42*i)*dpiScale; double posY=(scrH-aboutScroll+42*i)*dpiScale;
if (posY<-80*dpiScale || posY>scrH*dpiScale) continue; if (posY<-80*dpiScale || posY>scrH*dpiScale) continue;
@ -1757,7 +1758,7 @@ void FurnaceGUI::drawAbout() {
ImGui::PopFont(); ImGui::PopFont();
aboutScroll+=2; aboutScroll+=2;
if (++aboutSin>=2400) aboutSin=0; if (++aboutSin>=2400) aboutSin=0;
if (aboutScroll>(42*54+scrH)) aboutScroll=-20; if (aboutScroll>(42*55+scrH)) aboutScroll=-20;
} }
ImGui::End(); ImGui::End();
} }

View file

@ -111,6 +111,7 @@ bool pVersion(String) {
printf("- ymfm by Aaron Giles (BSD 3-clause)\n"); printf("- ymfm by Aaron Giles (BSD 3-clause)\n");
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("- 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");