diff options
author | Filippos Karapetis | 2009-03-25 12:11:49 +0000 |
---|---|---|
committer | Filippos Karapetis | 2009-03-25 12:11:49 +0000 |
commit | df5239e89e652fb351f10d03756d18dcdcf503c2 (patch) | |
tree | ff18bee01c3b8624be084df6ea7b15209ad32c18 | |
parent | 006b2d62afe341031b0b3ef7fc947f292c271240 (diff) | |
download | scummvm-rg350-df5239e89e652fb351f10d03756d18dcdcf503c2.tar.gz scummvm-rg350-df5239e89e652fb351f10d03756d18dcdcf503c2.tar.bz2 scummvm-rg350-df5239e89e652fb351f10d03756d18dcdcf503c2.zip |
Remove superfluous comma
svn-id: r39686
-rw-r--r-- | engines/sci/gfx/sci_widgets.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/gfx/sci_widgets.h b/engines/sci/gfx/sci_widgets.h index 5490e0fc4b..9ecb8f4f83 100644 --- a/engines/sci/gfx/sci_widgets.h +++ b/engines/sci/gfx/sci_widgets.h @@ -41,7 +41,7 @@ enum windowFlags { // Add title bar to window (10 pixels high, framed, text is centered and written in white on dark gray) kWindowTitle = 0x04, // 0100 kWindowDontDraw = 0x80, // 1000 0000 - don't draw anything - kWindowNoDropShadow = 0x1000000, // 0001 0000 0000 0000 0000 0000 0000 + kWindowNoDropShadow = 0x1000000 // 0001 0000 0000 0000 0000 0000 0000 }; enum controlStateFlags { |