From 61e45014c80856e87890c865dd4aff21852af760 Mon Sep 17 00:00:00 2001 From: Larry Bank Date: Fri, 30 May 2025 13:44:37 +0100 Subject: [PATCH] Fixed 16x16 text drawing with back buffer --- src/bb_ep_gfx.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bb_ep_gfx.inl b/src/bb_ep_gfx.inl index fda796f..04ab9c0 100644 --- a/src/bb_ep_gfx.inl +++ b/src/bb_ep_gfx.inl @@ -1355,7 +1355,7 @@ int bbepWriteString(BBEPDISP *pBBEP, int x, int y, char *szMsg, int iSize, int i (*pBBEP->pfnSetPixelFast)(pBBEP, x+ty, y+tx, iColor); } } else if (iBG != BBEP_TRANSPARENT) { - (*pBBEP->pfnSetPixelFast)(pBBEP, x+ty, y+tx+8, iBG); + (*pBBEP->pfnSetPixelFast)(pBBEP, x+ty, y+tx, iBG); } u8Mask >>= 1; }