diff --git a/stepmania/src/SDL_rotozoom.cpp b/stepmania/src/SDL_rotozoom.cpp index 57eb88fab0..8333c1480c 100644 --- a/stepmania/src/SDL_rotozoom.cpp +++ b/stepmania/src/SDL_rotozoom.cpp @@ -136,6 +136,9 @@ void RageSurfaceUtils::Zoom( RageSurface *&src, int dstwidth, int dstheight ) if( src == NULL ) return; + if( src->w == dstwidth && src->h == dstheight ) + return; + /* resize currently only does RGBA8888 */ if( src->fmt.BytesPerPixel != 4 ) {