From beecc55eb08e3454b1495adf7c4a03ff34fdb6d0 Mon Sep 17 00:00:00 2001 From: riccardom Date: Thu, 28 May 2009 17:51:09 +0000 Subject: [PATCH] Putting 5000 (OSD_TIMER_SIZE) in a u8 is no fun. --- desmume/src/GPU_osd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desmume/src/GPU_osd.h b/desmume/src/GPU_osd.h index e6d4d213d..b529d7f2f 100644 --- a/desmume/src/GPU_osd.h +++ b/desmume/src/GPU_osd.h @@ -44,7 +44,7 @@ private: u32 lineText_color; u8 lastLineText; char *lineText[OSD_MAX_LINES+1]; - u8 lineTimer[OSD_MAX_LINES+1]; + u16 lineTimer[OSD_MAX_LINES+1]; u32 lineColor[OSD_MAX_LINES+1]; bool needUpdate;