From 0305c6f4e3afb1bdd9fef7b23f0355b876548629 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sat, 5 Dec 2009 05:13:17 +0000 Subject: [PATCH] Made the window flag comments more consistent --- include/SDL_video.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/SDL_video.h b/include/SDL_video.h index 2e4aed767..3cd737102 100644 --- a/include/SDL_video.h +++ b/include/SDL_video.h @@ -102,8 +102,8 @@ typedef enum SDL_WINDOW_SHOWN = 0x00000004, /**< window is visible */ SDL_WINDOW_BORDERLESS = 0x00000008, /**< no window decoration */ SDL_WINDOW_RESIZABLE = 0x00000010, /**< window can be resized */ - SDL_WINDOW_MINIMIZED = 0x00000020, /**< minimized */ - SDL_WINDOW_MAXIMIZED = 0x00000040, /**< maximized */ + SDL_WINDOW_MINIMIZED = 0x00000020, /**< window is minimized */ + SDL_WINDOW_MAXIMIZED = 0x00000040, /**< window is maximized */ SDL_WINDOW_INPUT_GRABBED = 0x00000100, /**< window has grabbed input focus */ SDL_WINDOW_INPUT_FOCUS = 0x00000200, /**< window has input focus */ SDL_WINDOW_MOUSE_FOCUS = 0x00000400, /**< window has mouse focus */