mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-11 21:55:27 +00:00
SDL: Fix formatting for pointers.
This commit is contained in:
parent
e35a7c72c0
commit
c7121fae65
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user