Update the background

This commit is contained in:
wiidev 2023-02-16 23:40:02 +00:00
parent e2098ad049
commit 7d13d45861
2 changed files with 8 additions and 8 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 KiB

After

Width:  |  Height:  |  Size: 70 KiB

View File

@ -10,7 +10,7 @@
/* Constants */
#define CONSOLE_XCOORD 70
#define CONSOLE_YCOORD 118
#define CONSOLE_YCOORD 114
#define CONSOLE_WIDTH 502
#define CONSOLE_HEIGHT 300
@ -46,12 +46,12 @@ s32 __Gui_DrawPng(void *img, u32 x, u32 y)
if(!ctx)
{
/* Select PNG data */
ctx = PNGU_SelectImageFromBuffer(img);
if (!ctx) {
ret = -1;
goto out;
}
/* Select PNG data */
ctx = PNGU_SelectImageFromBuffer(img);
if (!ctx) {
ret = -1;
goto out;
}
}
/* Get image properties */
ret = PNGU_GetImageProperties(ctx, &imgProp);
@ -84,7 +84,7 @@ void Gui_InitConsole(void)
void Gui_DrawBackground(void)
{
extern char bgData[];
/* Draw background */
__Gui_DrawPng(bgData, 0, 0);
}