Merge pull request #2804 from Cacodemon345/voodoo3

voodoo: Fix misleading pixel format error message
This commit is contained in:
Miran Grča
2022-11-04 14:51:50 +01:00
committed by GitHub

View File

@@ -527,7 +527,7 @@ banshee_recalctimings(svga_t *svga)
svga->bpp = 32;
break;
default:
fatal("Unknown pixel format %08x\n", banshee->vgaInit0);
fatal("Unknown pixel format %08x (vgaInit0=%08x)\n", VIDPROCCFG_DESKTOP_PIX_FORMAT, banshee->vgaInit0);
}
if (!(banshee->vidProcCfg & VIDPROCCFG_DESKTOP_TILE) && (banshee->vidProcCfg & VIDPROCCFG_HALF_MODE))
svga->rowcount = 1;