summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2016-12-01 14:54:33 -0300
committercoadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu>2016-12-01 14:54:33 -0300
commit933a8dc1052786edfc5a774fecaaa0d1e7acdd97 (patch)
tree4b39f11596cace4f5f87d87d55dd31760867f00e
parent59db25438a3083678269cd2364e55aa5f6add8f2 (diff)
Add PPU RP2C02 profile
-rw-r--r--src/gnu_and_bola_-_the_libre_beat_em_up_game/scripts/gpu/ppu_rp2c02.lua36
1 files changed, 36 insertions, 0 deletions
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,
+ },
+ },
+ },
+}