(svn r20281) -Codechange: unify case scope closure + break coding style

This commit is contained in:
rubidium
2010-08-01 18:53:30 +00:00
parent 605f6d0ed3
commit e356cb9405
66 changed files with 427 additions and 215 deletions

View File

@@ -88,7 +88,8 @@ void Blitter_8bppOptimized::Draw(Blitter::BlitterParams *bp, BlitterMode mode, Z
if (m != 0) *dst = m;
dst++; src++;
} while (--pixels != 0);
} break;
break;
}
case BM_TRANSPARENT: {
const uint8 *remap = bp->remap;
@@ -97,7 +98,8 @@ void Blitter_8bppOptimized::Draw(Blitter::BlitterParams *bp, BlitterMode mode, Z
*dst = remap[*dst];
dst++;
} while (--pixels != 0);
} break;
break;
}
default:
memcpy(dst, src, pixels);