Skip to content

Commit e9d06af

Browse files
committed
remove some spurious deps in library_openal.js
1 parent 266b0b8 commit e9d06af

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/library_openal.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -860,7 +860,6 @@ var LibraryOpenAL = {
860860
}
861861
},
862862

863-
alSourcePlay__deps: ['setSourceState'],
864863
alSourcePlay: function(source) {
865864
if (!AL.currentContext) {
866865
#if OPENAL_DEBUG
@@ -879,7 +878,6 @@ var LibraryOpenAL = {
879878
AL.setSourceState(src, 0x1012 /* AL_PLAYING */);
880879
},
881880

882-
alSourceStop__deps: ['setSourceState'],
883881
alSourceStop: function(source) {
884882
if (!AL.currentContext) {
885883
#if OPENAL_DEBUG
@@ -898,7 +896,6 @@ var LibraryOpenAL = {
898896
AL.setSourceState(src, 0x1014 /* AL_STOPPED */);
899897
},
900898

901-
alSourceRewind__deps: ['setSourceState'],
902899
alSourceRewind: function(source) {
903900
if (!AL.currentContext) {
904901
#if OPENAL_DEBUG
@@ -920,7 +917,6 @@ var LibraryOpenAL = {
920917
AL.setSourceState(src, 0x1011 /* AL_INITIAL */);
921918
},
922919

923-
alSourcePause__deps: ['setSourceState'],
924920
alSourcePause: function(source) {
925921
if (!AL.currentContext) {
926922
#if OPENAL_DEBUG

0 commit comments

Comments
 (0)