diff options
author | Carsten Weisse <[email protected]> | 2008-03-02 08:35:30 +0000 |
---|---|---|
committer | Carsten Weisse <[email protected]> | 2008-03-02 08:35:30 +0000 |
commit | be5defe9e2cf78e3581ce944c31accaa5dc99eb7 (patch) | |
tree | d141f73b940de573bb47bd7a7ea06cb07f6fe9c2 /src | |
parent | a15eecb788e7649e45c9adcc00c37e3edb246920 (diff) |
inline cursorname
Diffstat (limited to 'src')
-rw-r--r-- | src/jake2/client/Menu.java | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/src/jake2/client/Menu.java b/src/jake2/client/Menu.java index 68b49b7..d606ac8 100644 --- a/src/jake2/client/Menu.java +++ b/src/jake2/client/Menu.java @@ -2,7 +2,7 @@ * Menu.java * Copyright (C) 2004 * - * $Id: Menu.java,v 1.21 2006-10-24 22:15:53 cawe Exp $ + * $Id: Menu.java,v 1.22 2008-03-02 08:35:30 cawe Exp $ */ /* Copyright (C) 1997-2001 Id Software, Inc. @@ -361,26 +361,17 @@ public final class Menu extends Key { static boolean cached; static void DrawCursor(int x, int y, int f) { - //char cursorname[80]; - String cursorname; - assert (f >= 0) : "negative time and cursor bug"; f = Math.abs(f); if (!cached) { - int i; - - for (i = 0; i < NUM_CURSOR_FRAMES; i++) { - cursorname = "m_cursor" + i; - - re.RegisterPic(cursorname); + for (int i = 0; i < NUM_CURSOR_FRAMES; i++) { + re.RegisterPic("m_cursor" + i); } cached = true; } - - cursorname = "m_cursor" + f; - re.DrawPic(x, y, cursorname); + re.DrawPic(x, y, "m_cursor" + f); } public static void DrawTextBox(int x, int y, int width, int lines) { |