summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2019-10-16 19:45:59 +0200
committer GitHub <noreply@github.com>2019-10-16 19:45:59 +0200
commit26f388b8343f95fd7f1883e1f1d56898ad32acdd (patch)
tree4b78cf66ed4eb080f0d921f394a3fd869c4b7d5a /src/devices/video
parentbd62407038bbc6e168a19dab7353cde3991c7bb8 (diff)
Multiple mispells over a comment (nw)
Diffstat (limited to 'src/devices/video')
-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;