From fb92073904da0d081eb42c405a0d2d7834eb9412 Mon Sep 17 00:00:00 2001 From: Hominem te esse Date: Mon, 27 Feb 2012 21:18:00 +0100 Subject: [PATCH] Big up for Volca ... slowdown the busy icon I miss you guys, jimmi, volca and polo :) --- src/gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui.c b/src/gui.c index 7fc4a61..fb97e8d 100644 --- a/src/gui.c +++ b/src/gui.c @@ -854,7 +854,7 @@ static void guiHandleDeferredOps(void) { static int bfadeout = 0x0; static void guiDrawBusy() { if (gTheme->loadingIcon) { - GSTEXTURE* texture = thmGetTexture(LOAD0_ICON + guiFrameId % gTheme->loadingIconCount); + GSTEXTURE* texture = thmGetTexture(LOAD0_ICON + (guiFrameId >> 1) % gTheme->loadingIconCount); if (texture && texture->Mem) { u64 mycolor = GS_SETREG_RGBA(0x080, 0x080, 0x080, bfadeout); rmDrawPixmap(texture, gTheme->loadingIcon->posX, gTheme->loadingIcon->posY, gTheme->loadingIcon->aligned, gTheme->loadingIcon->width, gTheme->loadingIcon->height, gTheme->loadingIcon->scaled, mycolor); -- 2.11.4.GIT