From 762c847d02ec75e040a720dc274a25ec46661c55 Mon Sep 17 00:00:00 2001 From: Adam Greenwood-Byrne Date: Tue, 9 Mar 2021 22:25:50 +0000 Subject: [PATCH] Fixed sloppy type bug in wtext.c --- part12-wgt/wtext.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/part12-wgt/wtext.c b/part12-wgt/wtext.c index d81f37b..db88cc0 100644 --- a/part12-wgt/wtext.c +++ b/part12-wgt/wtext.c @@ -1,8 +1,9 @@ #include "wgt.h" short xc, yc, cstart, cend, curspeed; -short grid, trans, fore, back; +short grid, trans; short wfontsize; +unsigned int fore, back; void wouttextxy (short x, short y, wgtfont font, char *string) {