Skip to content

Commit

Permalink
Fixed a comment in two test programs.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed Dec 25, 2015
1 parent cbe19d5 commit 1446faf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/testgl2.c
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion test/testgles2.c
Expand Up @@ -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
Expand Down

0 comments on commit 1446faf

Please sign in to comment.