99% working. Only issues are: data aborts when installing a theme after viewing a preview, bgm only works when installed as part of a theme shuffle. Single themes are silent

This commit is contained in:
2017-07-28 23:12:22 -04:00
parent ac69ceda51
commit 0d59b5deea
7 changed files with 233 additions and 29 deletions

View File

@@ -90,7 +90,7 @@ static void screen_set_blend(u32 color, bool rgb, bool alpha)
C3D_TexEnvColor(env, color);
}
static void screen_clear(gfxScreen_t screen, u32 color)
void screen_clear(gfxScreen_t screen, u32 color)
{
C3D_FrameBufClear(screen == GFX_TOP ? &target_top->frameBuf : &target_bottom->frameBuf, C3D_CLEAR_ALL, color, 0);
}