From 55cf5013971677693dce962c0126c0fed55f740f Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 9 Jan 2004 10:47:33 +0000 Subject: [PATCH] thanks for ignoring const completely, VC --- stepmania/src/ScreenOptions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenOptions.h b/stepmania/src/ScreenOptions.h index d4bf972c49..5e31becf39 100644 --- a/stepmania/src/ScreenOptions.h +++ b/stepmania/src/ScreenOptions.h @@ -114,7 +114,7 @@ private: { Row(); ~Row(); - const enum { ROW_NORMAL, ROW_EXIT } Type; + enum { ROW_NORMAL, ROW_EXIT } Type; vector m_textItems; Sprite m_sprBullet; BitmapText m_textTitle;