From 933a8dc1052786edfc5a774fecaaa0d1e7acdd97 Mon Sep 17 00:00:00 2001 From: "coadde [Márcio Alexandre Silva Delgado]" Date: Thu, 1 Dec 2016 14:54:33 -0300 Subject: Add PPU RP2C02 profile --- .../scripts/gpu/ppu_rp2c02.lua | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/gpu/ppu_rp2c02.lua (limited to 'src/gnu_and_bola_-_the_libre_beat_em_up_game') diff --git a/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/gpu/ppu_rp2c02.lua b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/gpu/ppu_rp2c02.lua new file mode 100644 index 0000000..e3449dc --- /dev/null +++ b/src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/gpu/ppu_rp2c02.lua @@ -0,0 +1,36 @@ +ppuRp2c02 = { + screen = { + width = 256, + height = 224, + }, + origin = { + x = 0, + y = -8, + }, + fps = 29.97, + sprite = { + use = true, + limits = { + screen = 64, + line = 8, + }, + size = { + default = { + width = 8, + height = 8, + }, + big = { + width = 8, + height = 16, + }, + }, + tile = { + use = true, + size = { + default = { + width = 16, + height = 16, + }, + }, + }, +} -- cgit v1.2.3-54-g00ecf