fix name and credit for monogram font

This commit is contained in:
Kistaro Windrider 2024-02-11 01:13:19 -08:00
parent a78b12d750
commit 89a068ebc4
Signed by: kistaro
SSH Key Fingerprint: SHA256:TBE2ynfmJqsAf0CP6gsflA0q5X5wD5fVKWPsZ7eVUg8

View File

@ -19,12 +19,8 @@ __lua__
-- gnu general public license for more details. -- gnu general public license for more details.
-------------------------------- --------------------------------
-- addtional credits -- monogram font by vincius menezio
-- dogica font by roberto mocci -- https://datagoblin.itch.io/monogram
-- https://www.dafont.com/es/dogica.font
--
-- converted by josれた aular
-- https://jaular.itch.io/pico-8-dogica-font
-- tab 0: library -- tab 0: library
-- tab 1: p8 entry points -- tab 1: p8 entry points
@ -287,7 +283,7 @@ function _draw()
end end
end end
function font_dogica() function font_monogram()
memcpy(0x5600, 0x2000, 0x800) memcpy(0x5600, 0x2000, 0x800)
poke(0x5f58, 0x81) poke(0x5f58, 0x81)
end end
@ -760,7 +756,7 @@ end
function zonk_mode:activate() function zonk_mode:activate()
clear_alt_pal_bits() clear_alt_pal_bits()
pal() pal()
font_dogica() font_monogram()
if (type(self.file) == "string") self.file = split(self.file, "\n") if (type(self.file) == "string") self.file = split(self.file, "\n")
if (not self.file) self:next_file() if (not self.file) self:next_file()
assert(self.file) assert(self.file)
@ -947,7 +943,7 @@ mknew(ao_splash, function(self)
f=15, f=15,
on=true, on=true,
} }
font_dogica() font_monogram()
end) end)
function ao_splash:update() function ao_splash:update()
@ -1046,7 +1042,7 @@ mknew(title_screen, function(t)
end) end)
function title_screen:activate() function title_screen:activate()
font_dogica() font_monogram()
end end
function title_screen:draw() function title_screen:draw()