From 6fc856ae8a63d599488ecec0e66ff0140fb3a8d9 Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Sat, 20 Jul 2013 11:16:50 +0200 Subject: [PATCH] Corrected comments in test library source. --- src/test/SDL_test_common.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/SDL_test_common.c b/src/test/SDL_test_common.c index f89db234b..e53123948 100644 --- a/src/test/SDL_test_common.c +++ b/src/test/SDL_test_common.c @@ -1208,7 +1208,7 @@ SDLTest_CommonEvent(SDLTest_CommonState * state, SDL_Event * event, int *done) break; case SDLK_EQUALS: if (event->key.keysym.mod & KMOD_CTRL) { - /* Ctrt-+ double the size of the window */ + /* Ctrl-+ double the size of the window */ SDL_Window *window = SDL_GetWindowFromID(event->key.windowID); if (window) { int w, h; @@ -1219,7 +1219,7 @@ SDLTest_CommonEvent(SDLTest_CommonState * state, SDL_Event * event, int *done) break; case SDLK_MINUS: if (event->key.keysym.mod & KMOD_CTRL) { - /* Ctrt-- double the size of the window */ + /* Ctrl-- half the size of the window */ SDL_Window *window = SDL_GetWindowFromID(event->key.windowID); if (window) { int w, h; @@ -1318,7 +1318,7 @@ SDLTest_CommonEvent(SDLTest_CommonState * state, SDL_Event * event, int *done) } } } else if (event->key.keysym.mod & KMOD_ALT) { - /* Ctrl-Enter toggle fullscreen desktop */ + /* Alt-Enter toggle fullscreen desktop */ SDL_Window *window = SDL_GetWindowFromID(event->key.windowID); if (window) { Uint32 flags = SDL_GetWindowFlags(window);