From 77671f96efe9904af681de78c96e305e4e0f3abe Mon Sep 17 00:00:00 2001 From: Joshua Wise Date: Sun, 14 Dec 2008 00:15:29 -0500 Subject: [PATCH] That is almost certainly all the cause of my woe. --- video/text.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/video/text.c b/video/text.c index e7b0db3..962af0c 100644 --- a/video/text.c +++ b/video/text.c @@ -39,6 +39,7 @@ void text_render(char *buf, int x, int y, int w, int h) smram_aseg_set_state(SMRAM_ASEG_SMMCODE); for (cy = y; cy < (y + h); cy++) { + cx = x; texty = cy / 14; textx = cx / 9; ch = video[texty * 50 + textx * 2]; @@ -89,6 +90,7 @@ uint32_t text_checksum(int x, int y, int w, int h) for (cy = y; cy < (y + h); cy++) { + cx = x; texty = cy / 14; textx = cx / 9; ch = video[texty * 50 + textx * 2]; -- 2.39.2