mirror of
https://github.com/isometimes/rpi4-osdev
synced 2024-11-09 20:00:40 +00:00
Fixed sloppy type bug in wtext.c
This commit is contained in:
parent
0c55d05177
commit
762c847d02
1 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue