We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In GUI_Paint.h all methods have the arg order ...foreground, background ...note Paint_DrawChar() and Paint_DrawString_EN()
void Paint_DrawChar(UWORD Xstart, UWORD Ystart, const char Acsii_Char, sFONT* Font, UWORD Color_Foreground, UWORD Color_Background); void Paint_DrawString_EN(UWORD Xstart, UWORD Ystart, const char * pString, sFONT* Font, UWORD Color_Foreground, UWORD Color_Background); void Paint_DrawString_CN(UWORD Xstart, UWORD Ystart, const char * pString, cFONT* font, UWORD Color_Foreground, UWORD Color_Background);
However in GUI_Paint.c ( line 590 ) the call is made:
Paint_DrawChar(Xpoint, Ypoint, * pString, Font, Color_Background, Color_Foreground);
` This should read:
Paint_DrawChar(Xpoint, Ypoint, * pString, Fon, Color_Foregroundt, Color_Background);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In GUI_Paint.h all methods have the arg order ...foreground, background ...note Paint_DrawChar() and Paint_DrawString_EN()
void Paint_DrawChar(UWORD Xstart, UWORD Ystart, const char Acsii_Char, sFONT* Font, UWORD Color_Foreground, UWORD Color_Background);
void Paint_DrawString_EN(UWORD Xstart, UWORD Ystart, const char * pString, sFONT* Font, UWORD Color_Foreground, UWORD Color_Background);
void Paint_DrawString_CN(UWORD Xstart, UWORD Ystart, const char * pString, cFONT* font, UWORD Color_Foreground, UWORD Color_Background);
However in GUI_Paint.c ( line 590 ) the call is made:
Paint_DrawChar(Xpoint, Ypoint, * pString, Font, Color_Background, Color_Foreground);
`
This should read:
Paint_DrawChar(Xpoint, Ypoint, * pString, Fon, Color_Foregroundt, Color_Background);
The text was updated successfully, but these errors were encountered: