]> git.mxchange.org Git - simgear.git/commitdiff
Reflect the latest header changes
authorErik Hofman <erik@ehofman.com>
Wed, 3 Aug 2016 08:52:40 +0000 (10:52 +0200)
committerRoland Haeder <roland@mxchange.org>
Sat, 13 Aug 2016 08:21:16 +0000 (10:21 +0200)
simgear/sound/aeonwave_test1.cxx
simgear/sound/soundmgr_aeonwave.cxx

index 18642103a143dbfce2f2b2d25af186a61e76b03d..46fb4c472dc1e3000027a7f3bcb99b54f4721612 100644 (file)
 
 bool testForError(aax::AeonWave& p, std::string s)
 {
-    enum aaxErrorType error = aax::error_no();
+    enum aaxErrorType error = p.error_no();
     if (error != AAX_ERROR_NONE) {
        std::cout << "AeonWave Error: "
-                 << aax::error(error) << " at " << s << std::endl;
+                 << aax::strerror(error) << " at " << s << std::endl;
         return true;
     }
     return false;
index 737d102628d515e2c532d6191e2eb361767ac9f1..f8618e25ae6b904aa24ced4c9e8156f54e31dce2 100644 (file)
@@ -61,7 +61,7 @@ typedef sample_group_map::iterator sample_group_map_iterator;
 typedef sample_group_map::const_iterator const_sample_group_map_iterator;
 
 #if 1
-# define TRY(a)        if ((a) == 0) printf("%i: %s\n", __LINE__, aax::error())
+# define TRY(a)        if ((a) == 0) printf("%i: %s\n", __LINE__, d->_aax.strerror())
 #else
 # define TRY(a)        (a)
 #endif
@@ -702,7 +702,7 @@ bool SGSoundMgr::testForError(std::string s, std::string name)
     enum aaxErrorType error = aax::error_no();
     if (error != AAX_ERROR_NONE) {
        SG_LOG( SG_SOUND, SG_ALERT, "AeonWave Error (" << name << "): "
-                                      << aax::error(error) << " at " << s);
+                                      << aax::strerror(error) << " at " << s);
        return true;
     }
 #endif