summaryrefslogtreecommitdiff
path: root/include/SDL_messagebox.h
diff options
context:
space:
mode:
authorRyan C. Gordon <icculus@icculus.org>2012-11-21 22:59:42 -0500
committerRyan C. Gordon <icculus@icculus.org>2012-11-21 22:59:42 -0500
commit7b882446cb54a9011b4ef689af0aecdc32542cd9 (patch)
treed36488101e40bf87b29148c1a8e85b573cbc68d9 /include/SDL_messagebox.h
parentbba9802f400682da8cace5a233fafeffe1851a51 (diff)
downloadsdl-7b882446cb54a9011b4ef689af0aecdc32542cd9.tar.gz
Removed commas at the end of enums, to make gcc's -pedantic happy.
Fixes Bugzilla #1647.
Diffstat (limited to 'include/SDL_messagebox.h')
-rw-r--r--include/SDL_messagebox.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/SDL_messagebox.h b/include/SDL_messagebox.h
index 724c72895..622130aab 100644
--- a/include/SDL_messagebox.h
+++ b/include/SDL_messagebox.h
@@ -40,7 +40,7 @@ typedef enum
{
SDL_MESSAGEBOX_ERROR = 0x00000010, /**< error dialog */
SDL_MESSAGEBOX_WARNING = 0x00000020, /**< warning dialog */
- SDL_MESSAGEBOX_INFORMATION = 0x00000040, /**< informational dialog */
+ SDL_MESSAGEBOX_INFORMATION = 0x00000040 /**< informational dialog */
} SDL_MessageBoxFlags;
/**
@@ -49,7 +49,7 @@ typedef enum
typedef enum
{
SDL_MESSAGEBOX_BUTTON_RETURNKEY_DEFAULT = 0x00000001, /**< Marks the default button when return is hit */
- SDL_MESSAGEBOX_BUTTON_ESCAPEKEY_DEFAULT = 0x00000002, /**< Marks the default button when escape is hit */
+ SDL_MESSAGEBOX_BUTTON_ESCAPEKEY_DEFAULT = 0x00000002 /**< Marks the default button when escape is hit */
} SDL_MessageBoxButtonFlags;
/**