diff options
author | Carsten Weisse <[email protected]> | 2005-04-26 20:11:03 +0000 |
---|---|---|
committer | Carsten Weisse <[email protected]> | 2005-04-26 20:11:03 +0000 |
commit | ce4513e421be446829008cab1547bca01066f3e6 (patch) | |
tree | 7454182e56d44a65fed867b2dd2b250b038b39ad /src/jake2/sound | |
parent | 528c7217afb7037820c6a1b331dcca1fc504f719 (diff) |
new attribute for cached sounds
Diffstat (limited to 'src/jake2/sound')
-rw-r--r-- | src/jake2/sound/sfx_t.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/jake2/sound/sfx_t.java b/src/jake2/sound/sfx_t.java index 00748e8..973233d 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.2 2004-07-13 11:20:27 cawe Exp $ + * $Id: sfx_t.java,v 1.3 2005-04-26 20:11:03 cawe Exp $ */ /* Copyright (C) 1997-2001 Id Software, Inc. @@ -36,11 +36,13 @@ public class sfx_t { // is used for AL buffers public int bufferId = -1; + public boolean isCached = false; public void clear() { name = truename = null; cache = null; registration_sequence = 0; bufferId = -1; + isCached = false; } } |