Get rid of unneccesary cast in text.c
This commit is contained in:
parent
7500534676
commit
2da0e73ec7
1 changed files with 1 additions and 1 deletions
|
@ -197,7 +197,7 @@ bool16 AddTextPrinter(struct TextPrinterTemplate *printerTemplate, u8 speed, voi
|
|||
gTempTextPrinter.textSpeed = 0;
|
||||
for (j = 0; j < 0x400; ++j)
|
||||
{
|
||||
if ((u32)RenderFont(&gTempTextPrinter) == 1)
|
||||
if (RenderFont(&gTempTextPrinter) == 1)
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue