diff options
author | Nebuleon Fumika | 2012-12-30 15:30:14 -0500 |
---|---|---|
committer | Nebuleon Fumika | 2012-12-30 15:30:14 -0500 |
commit | 8956d5cff2a5551016aa75d99ce8cff6635605af (patch) | |
tree | 3eab900e27a71ef2806902789910511e770fb6ee | |
parent | b7867f01cc9bc4fbcec6281afcfecbbc3304b861 (diff) | |
download | snes9x2005-8956d5cff2a5551016aa75d99ce8cff6635605af.tar.gz snes9x2005-8956d5cff2a5551016aa75d99ce8cff6635605af.tar.bz2 snes9x2005-8956d5cff2a5551016aa75d99ce8cff6635605af.zip |
Clean up some backslashes at the end of lines.
-rw-r--r-- | source/tile.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source/tile.cpp b/source/tile.cpp index c93c02f..008ef33 100644 --- a/source/tile.cpp +++ b/source/tile.cpp @@ -637,9 +637,9 @@ static void WRITE_4PIXELS16_ADD (uint32 Offset, uint8 *Pixels, uint16 *ScreenCol if (SubDepth [N]) { if (SubDepth [N] != 1) - Screen [N] = COLOR_ADD (ScreenColors [Pixel], Screen [GFX.Delta + N]); \ + Screen [N] = COLOR_ADD (ScreenColors [Pixel], Screen [GFX.Delta + N]); else - Screen [N] = COLOR_ADD (ScreenColors [Pixel], GFX.FixedColour); \ + Screen [N] = COLOR_ADD (ScreenColors [Pixel], GFX.FixedColour); } else Screen [N] = ScreenColors [Pixel]; @@ -662,9 +662,9 @@ static void WRITE_4PIXELS16_FLIPPED_ADD (uint32 Offset, uint8 *Pixels, uint16 *S if (SubDepth [N]) { if (SubDepth [N] != 1) - Screen [N] = COLOR_ADD (ScreenColors [Pixel], Screen [GFX.Delta + N]); \ + Screen [N] = COLOR_ADD (ScreenColors [Pixel], Screen [GFX.Delta + N]); else - Screen [N] = COLOR_ADD (ScreenColors [Pixel], GFX.FixedColour); \ + Screen [N] = COLOR_ADD (ScreenColors [Pixel], GFX.FixedColour); } else Screen [N] = ScreenColors [Pixel]; |