diff options
author | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2016-12-18 20:44:24 -0300 |
---|---|---|
committer | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2016-12-18 20:44:24 -0300 |
commit | 665279e7da942568fb7883a6d72cff219c6607f9 (patch) | |
tree | 3417809e5241e46ca25aa07fbae8e790b6b45515 /src | |
parent | 7114f66b0e931a16613b503f38e8febc7abc925b (diff) |
Update ppu_rp2c0x mode
Diffstat (limited to 'src')
-rw-r--r-- | src/hardware_data/scripts/load/graphics/ppu_rp2c0x.lua (renamed from src/hardware_data/scripts/load/graphics/ppu_rp2c02.lua) | 30 |
1 files changed, 21 insertions, 9 deletions
diff --git a/src/hardware_data/scripts/load/graphics/ppu_rp2c02.lua b/src/hardware_data/scripts/load/graphics/ppu_rp2c0x.lua index b7ed0dd..a2c1c5f 100644 --- a/src/hardware_data/scripts/load/graphics/ppu_rp2c02.lua +++ b/src/hardware_data/scripts/load/graphics/ppu_rp2c0x.lua @@ -1,26 +1,38 @@ return { screen = { ntsc = { - width = 256, - height = 224, - fps = 29.97, - origin = { + width = 256, + height = 224, + refresh = 60.0988, + origin = { x = 0, y = -8, }, }, pal = { - width = 256, - height = 240, - fps = 25, - origin = { + width = 256, + height = 240, + refresh = 50.0070, + origin = { x = 0, y = 0, }, }, + ntsc-vs = { + width = 256, + height = 224, + refresh = 60.0985, + origin = { + x = 0, + y = -8, + }, + }, + pxps = '72Ki', + txps = 320, + plps = false, }, colours = { - total = 54, + total = 64, limit = 25, background = true, transparent = 'colourKey', |