diff options
author | Carsten Weisse <[email protected]> | 2006-11-19 19:17:50 +0000 |
---|---|---|
committer | Carsten Weisse <[email protected]> | 2006-11-19 19:17:50 +0000 |
commit | 3ef4cd447cffe68fe8f5c2a92905dd5de9bda159 (patch) | |
tree | 75e1a6b93143dc949c03b89b5ccc5e64a9a762fe | |
parent | 5ff708533427bbace50025e23b21e3aaa3713d12 (diff) |
replace AL_SOURCE_ABSOLUTE (no standard)
-rw-r--r-- | src/jake2/sound/lwjgl/Channel.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jake2/sound/lwjgl/Channel.java b/src/jake2/sound/lwjgl/Channel.java index 0833a63..acadd50 100644 --- a/src/jake2/sound/lwjgl/Channel.java +++ b/src/jake2/sound/lwjgl/Channel.java @@ -3,7 +3,7 @@ * * Copyright (C) 2003 * - * $Id: Channel.java,v 1.6.6.2 2006-11-19 19:16:05 cawe Exp $ + * $Id: Channel.java,v 1.6.6.3 2006-11-19 19:17:50 cawe Exp $ */ /* Copyright (C) 1997-2001 Id Software, Inc. @@ -168,7 +168,7 @@ public class Channel { if (!streamingEnabled) return; unqueueStreams(); int source = channels[numChannels].sourceId; - AL10.alSourcei (source, AL10.AL_SOURCE_ABSOLUTE, AL10.AL_TRUE); + AL10.alSourcei (source, AL10.AL_SOURCE_RELATIVE, AL10.AL_FALSE); // free the last source numChannels++; |