From 0f0bd478126af326c4d5063c16171c4045363519 Mon Sep 17 00:00:00 2001 From: TimeServ Date: Sun, 2 Apr 2006 09:13:07 +0000 Subject: [PATCH] swap arrow_down and arrow_up git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2146 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/client/m_master.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/client/m_master.c b/engine/client/m_master.c index 527f21136..765099931 100644 --- a/engine/client/m_master.c +++ b/engine/client/m_master.c @@ -1218,10 +1218,10 @@ void SL_SliderDraw (int x, int y, menucustom_t *ths, menu_t *menu) { Draw_ScalePic(x + ths->common.width - 8, y+8, 8, ths->common.height-16, pic); - pic = Draw_SafeCachePic("scrollbars/arrow_down.png"); + pic = Draw_SafeCachePic("scrollbars/arrow_up.png"); Draw_ScalePic(x + ths->common.width - 8, y, 8, 8, pic); - pic = Draw_SafeCachePic("scrollbars/arrow_up.png"); + pic = Draw_SafeCachePic("scrollbars/arrow_down.png"); Draw_ScalePic(x + ths->common.width - 8, y + ths->common.height - 8, 8, 8, pic); y += ((info->scrollpos) / ((float)info->numslots - info->visibleslots)) * (float)(ths->common.height-(64+16-1));