diff options
author | Carsten Weisse <[email protected]> | 2005-10-24 22:38:21 +0000 |
---|---|---|
committer | Carsten Weisse <[email protected]> | 2005-10-24 22:38:21 +0000 |
commit | 4fab90dc0c6e4083e3be2f2b9d1822f922452319 (patch) | |
tree | 17435a6418e5ee25caefe9f8709bcca060f84be0 /src | |
parent | ec23f30aab602ca831374da2c917a91014bd7843 (diff) |
add R_Init() with default xpos, ypos to 0, 0
Diffstat (limited to 'src')
-rw-r--r-- | src/jake2/render/jogl/Main.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/jake2/render/jogl/Main.java b/src/jake2/render/jogl/Main.java index 31ded6c..c7f5e1c 100644 --- a/src/jake2/render/jogl/Main.java +++ b/src/jake2/render/jogl/Main.java @@ -2,7 +2,7 @@ * Main.java * Copyright (C) 2003 * - * $Id: Main.java,v 1.8.6.1 2005-07-16 18:25:37 cawe Exp $ + * $Id: Main.java,v 1.8.6.2 2005-10-24 22:38:21 cawe Exp $ */ /* Copyright (C) 1997-2001 Id Software, Inc. @@ -1069,6 +1069,10 @@ public abstract class Main extends Base { */ float[] r_turbsin = new float[256]; + protected boolean R_Init() { + return R_Init(0, 0); + } + protected boolean R_Init(int vid_xpos, int vid_ypos) { assert(Warp.SIN.length == 256) : "warpsin table bug"; |