summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/snes_ppu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/snes_ppu.cpp')
-rw-r--r--src/devices/video/snes_ppu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/video/snes_ppu.cpp b/src/devices/video/snes_ppu.cpp
index 59610aab6bb..8b0f2ec06ec 100644
--- a/src/devices/video/snes_ppu.cpp
+++ b/src/devices/video/snes_ppu.cpp
@@ -815,7 +815,7 @@ inline void snes_ppu_device::update_line( uint16_t curline, uint8_t layer, uint8
uint16_t ii = 0;
while (ii < 256 + (8 << tile_size))
{
- // determine the horizontal position (Bishojo Janshi Suchi Pai & Desert Figther have tile_size & hires == 1)
+ // determine the horizontal position (Bishoujo Janshi Suchie-Pai & Desert Fighter have tile_size & hires == 1)
uint32_t xpos = xoff + (ii << (tile_size * hires));
uint32_t ypos = yoff + curline;