Difference between revisions of "BuildingWithOpenAL"

From SfzWiki
Jump to: navigation, search
 
(One intermediate revision by one user not shown)
Line 1: Line 1:
 
you can also try  using openal instead of fmod, to do that :
 
you can also try  using openal instead of fmod, to do that :
  
* edit the file SConstruct
+
run "scons SOUND_SYSTEM=openal"  instead of just "scons"
* replace
+
  SOUND_SYSTEM = 'fmod'
+
  #SOUND_SYSTEM = 'openal'
+
* by
+
  #SOUND_SYSTEM = 'fmod'
+
  SOUND_SYSTEM = 'openal'
+
 
+
* recompile (run scons)
+
 
+
[[User:Ghoulsblade|Ghoulsblade]] 00:03, 13 August 2007 (CEST) : warning we still have some problems with openal, so only use this if fmod doesn't work for you
+

Latest revision as of 12:47, 25 August 2007

you can also try using openal instead of fmod, to do that :

run "scons SOUND_SYSTEM=openal" instead of just "scons"