mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
807 B

  1. --- ./simgear/sound/soundmgr_openal.cxx.orig 2005-07-11 17:54:35.000000000 +0200
  2. +++ ./simgear/sound/soundmgr_openal.cxx 2005-07-11 17:54:52.000000000 +0200
  3. @@ -71,7 +71,7 @@
  4. SG_LOG( SG_GENERAL, SG_INFO, "Initializing OpenAL sound manager" );
  5. // initialize OpenAL
  6. - alutInit( 0, NULL );
  7. + alutInit( 0, 0, 0 );
  8. atexit(alutExit);
  9. if ( alGetError() == AL_NO_ERROR) {
  10. --- ./simgear/sound/openal_test1.cxx.orig 2005-07-11 17:55:17.000000000 +0200
  11. +++ ./simgear/sound/openal_test1.cxx 2005-07-11 17:55:27.000000000 +0200
  12. @@ -39,7 +39,7 @@
  13. int main( int argc, char *argv[] ) {
  14. // initialize OpenAL
  15. - alutInit( 0, NULL );
  16. + alutInit( 0, 0, 0 );
  17. alGetError();
  18. if ( alGetError() != AL_NO_ERROR) {
  19. SG_LOG( SG_GENERAL, SG_ALERT, "Audio initialization failed!" );