summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c
index bda9492..065f194 100644
--- a/src/main.c
+++ b/src/main.c
@@ -506,8 +506,8 @@ int SetOGLVideoMode(int Width, int Height)
#if GL_EXT_secondary_color
pglSecondaryColorPointerEXT = NULL;
- if (CheckToken(ext, "GL_EXT_seconary_color")) {
- printf("Found GL_EXT_seconary_color... ");
+ if (CheckToken(ext, "GL_EXT_secondary_color")) {
+ printf("Found GL_EXT_secondary_color... ");
pglSecondaryColorPointerEXT = SDL_GL_GetProcAddress("glSecondaryColorPointerEXT");
if (pglSecondaryColorPointerEXT == NULL) {
@@ -516,7 +516,7 @@ int SetOGLVideoMode(int Width, int Height)
printf("and it's good!\n");
}
} else {
- printf("GL_EXT_seconary_color not found...\n");
+ printf("GL_EXT_secondary_color not found...\n");
}
#endif