From 60f18a1c68322d078d3217710bf2a3d05678ecf8 Mon Sep 17 00:00:00 2001 From: Carsten Weisse Date: Tue, 13 Jul 2004 11:20:28 +0000 Subject: experimental EAX2.0 support (today only win32 is supported) --- src/jake2/sound/sfx_t.java | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) (limited to 'src/jake2/sound/sfx_t.java') diff --git a/src/jake2/sound/sfx_t.java b/src/jake2/sound/sfx_t.java index 992c0e7..00748e8 100644 --- a/src/jake2/sound/sfx_t.java +++ b/src/jake2/sound/sfx_t.java @@ -2,7 +2,7 @@ * sfx_t.java * Copyright (C) 2004 * - * $Id: sfx_t.java,v 1.1 2004-07-08 20:56:49 hzi Exp $ + * $Id: sfx_t.java,v 1.2 2004-07-13 11:20:27 cawe Exp $ */ /* Copyright (C) 1997-2001 Id Software, Inc. @@ -28,22 +28,19 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. package jake2.sound; - public class sfx_t { - public String name; //mem + public String name; public int registration_sequence; - public sfxcache_t cache; //ptr - public String truename; //ptr + public sfxcache_t cache; + public String truename; - // cwei - public int id = -1; + // is used for AL buffers + public int bufferId = -1; public void clear() { name = truename = null; cache = null; registration_sequence = 0; - - // cwei - id = -1; + bufferId = -1; } } -- cgit v1.2.3