diff --git a/hw/xbox/nv2a/pgraph.c b/hw/xbox/nv2a/pgraph.c index 7d0e7e460d..81aab293ba 100644 --- a/hw/xbox/nv2a/pgraph.c +++ b/hw/xbox/nv2a/pgraph.c @@ -5354,7 +5354,7 @@ static bool pgraph_check_surface_to_texture_compatibility( { // FIXME: Better checks/handling on formats and surface-texture compat - if (surface->pitch != shape->pitch || + if ((!surface->swizzle && surface->pitch != shape->pitch) || surface->width != shape->width || surface->height != shape->height) { return false;