aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorNebuleon Fumika2012-12-30 15:30:14 -0500
committerNebuleon Fumika2012-12-30 15:30:14 -0500
commit8956d5cff2a5551016aa75d99ce8cff6635605af (patch)
tree3eab900e27a71ef2806902789910511e770fb6ee /source
parentb7867f01cc9bc4fbcec6281afcfecbbc3304b861 (diff)
downloadsnes9x2005-8956d5cff2a5551016aa75d99ce8cff6635605af.tar.gz
snes9x2005-8956d5cff2a5551016aa75d99ce8cff6635605af.tar.bz2
snes9x2005-8956d5cff2a5551016aa75d99ce8cff6635605af.zip
Clean up some backslashes at the end of lines.
Diffstat (limited to 'source')
-rw-r--r--source/tile.cpp8
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];