Procházet zdrojové kódy

Fixed a comment in two test programs.

Philipp Wiesemann před 9 roky
rodič
revize
1446faf00e
2 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 1 1
      test/testgl2.c
  2. 1 1
      test/testgles2.c

+ 1 - 1
test/testgl2.c

@@ -59,7 +59,7 @@ static int LoadContext(GL_Context * data)
             return SDL_SetError("Couldn't load GL function %s: %s\n", #func, SDL_GetError()); \
         } \
     } while ( 0 );
-#endif /* _SDL_NOGETPROCADDR_ */
+#endif /* __SDL_NOGETPROCADDR__ */
 
 #include "../src/render/opengl/SDL_glfuncs.h"
 #undef SDL_PROC

+ 1 - 1
test/testgles2.c

@@ -61,7 +61,7 @@ static int LoadContext(GLES2_Context * data)
             return SDL_SetError("Couldn't load GLES2 function %s: %s\n", #func, SDL_GetError()); \
         } \
     } while ( 0 );
-#endif /* _SDL_NOGETPROCADDR_ */
+#endif /* __SDL_NOGETPROCADDR__ */
 
 #include "../src/render/opengles2/SDL_gles2funcs.h"
 #undef SDL_PROC