]> git.mxchange.org Git - simgear.git/commitdiff
Move ALUT 1.0 variables inside the #ifdef, to avoid some compiler warnings.
authorJames Turner <zakalawe@mac.com>
Sat, 29 Oct 2011 10:06:24 +0000 (11:06 +0100)
committerJames Turner <zakalawe@mac.com>
Sat, 29 Oct 2011 10:06:24 +0000 (11:06 +0100)
simgear/sound/openal_test1.cxx

index f02c53db7f2d762ea86c33f66906f4c5f4a18ea4..0a6dc885a2961584d79977acc092d612d3f4ae03 100644 (file)
@@ -103,10 +103,6 @@ int main( int argc, char *argv[] ) {
     ALfloat source_vel[3];
 
     // configuration values
-    ALenum format;
-    ALsizei size;
-    ALvoid* data;
-    ALsizei freq;
     ALboolean loop = false;
 
     source_pos[0] = 0.0; source_pos[1] = 0.0; source_pos[2] = 0.0;
@@ -131,6 +127,11 @@ int main( int argc, char *argv[] ) {
   }
 
 #else
+  ALenum format;
+  ALsizei size;
+  ALvoid* data;
+  ALsizei freq;
+  
 # if defined (__APPLE__)
     alutLoadWAVFile( (ALbyte *)AUDIOFILE, &format, &data, &size, &freq );
 # else