From 742d7fc1c22242e032f97f362343771ca7ff77d4 Mon Sep 17 00:00:00 2001 From: Joe Onorato Date: Thu, 15 Oct 2009 19:48:16 -0700 Subject: [PATCH] Show the orange selection thing. --- res/raw/rollo3.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/res/raw/rollo3.c b/res/raw/rollo3.c index 2aefa291a8..0fe940e42e 100644 --- a/res/raw/rollo3.c +++ b/res/raw/rollo3.c @@ -277,6 +277,12 @@ void drawFrontGrid(float rowOffset) if ((y >= ymin) && (y <= ymax)) { setColor(1.f, 1.f, 1.f, 1.f); + + if (state->selectedIconIndex == iconNum) { + bindTexture(NAMED_PFTexLinear, 0, state->selectedIconTexture); + drawSpriteScreenspace(x, y, 0, 128, 128); + } + bindTexture(NAMED_PFTexLinear, 0, loadI32(ALLOC_ICON_IDS, iconNum)); drawSpriteScreenspace(x, y, 0, 128, 128); }