SDL: Fix formatting for pointers.

This commit is contained in:
Eric Culp 2012-08-20 20:14:21 -04:00 committed by Filippos Karapetis
parent e35a7c72c0
commit c7121fae65

View File

@ -1182,7 +1182,7 @@ void SurfaceSdlGraphicsManager::updateScreen() {
*
* @param byteWidth The width of the region to copy in bytes.
*/
static void blitSurface(byte * srcPtr, int srcPitch, byte * dstPtr, int dstPitch, int byteWidth, int height) {
static void blitSurface(byte *srcPtr, int srcPitch, byte *dstPtr, int dstPitch, int byteWidth, int height) {
while (height--) {
memcpy(dstPtr, srcPtr, byteWidth);
dstPtr += dstPitch;