From fc1c863f8a220a15ab3d87e28e48a61e377a1476 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 23 Feb 2005 19:09:13 +0000 Subject: [PATCH] omit semicolon, so REGISTER_ACTOR_CLASS(x) can't be parsed as a prototype --- stepmania/src/ActorFrame.cpp | 2 +- stepmania/src/BGAnimation.cpp | 2 +- stepmania/src/BitmapText.cpp | 2 +- stepmania/src/FadingBanner.cpp | 2 +- stepmania/src/HelpDisplay.cpp | 2 +- stepmania/src/RollingNumbers.cpp | 2 +- stepmania/src/ScoreDisplayCalories.cpp | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/stepmania/src/ActorFrame.cpp b/stepmania/src/ActorFrame.cpp index c54a60b4dd..499e934ef5 100644 --- a/stepmania/src/ActorFrame.cpp +++ b/stepmania/src/ActorFrame.cpp @@ -10,7 +10,7 @@ // lua start LUA_REGISTER_CLASS( ActorFrame ) // lua end -REGISTER_ACTOR_CLASS( ActorFrame ); +REGISTER_ACTOR_CLASS( ActorFrame ) ActorFrame::ActorFrame() { diff --git a/stepmania/src/BGAnimation.cpp b/stepmania/src/BGAnimation.cpp index 39eda2f2e3..82d31dad84 100644 --- a/stepmania/src/BGAnimation.cpp +++ b/stepmania/src/BGAnimation.cpp @@ -9,7 +9,7 @@ #include "LuaManager.h" -REGISTER_ACTOR_CLASS( BGAnimation ); +REGISTER_ACTOR_CLASS( BGAnimation ) BGAnimation::BGAnimation() { diff --git a/stepmania/src/BitmapText.cpp b/stepmania/src/BitmapText.cpp index 025527652d..dfded2b6b2 100644 --- a/stepmania/src/BitmapText.cpp +++ b/stepmania/src/BitmapText.cpp @@ -15,7 +15,7 @@ // lua start LUA_REGISTER_CLASS( BitmapText ) // lua end -REGISTER_ACTOR_CLASS( BitmapText ); +REGISTER_ACTOR_CLASS( BitmapText ) /* * XXX: Changing a whole array of diffuse colors every frame (several times) is a waste, diff --git a/stepmania/src/FadingBanner.cpp b/stepmania/src/FadingBanner.cpp index 0e54b5e41d..08003b7a37 100644 --- a/stepmania/src/FadingBanner.cpp +++ b/stepmania/src/FadingBanner.cpp @@ -14,7 +14,7 @@ // lua start LUA_REGISTER_CLASS( FadingBanner ) // lua end -REGISTER_ACTOR_CLASS( FadingBanner ); +REGISTER_ACTOR_CLASS( FadingBanner ) static ThemeMetric FADE_SECONDS ("FadingBanner","FadeSeconds"); diff --git a/stepmania/src/HelpDisplay.cpp b/stepmania/src/HelpDisplay.cpp index de68287769..39dca2c901 100644 --- a/stepmania/src/HelpDisplay.cpp +++ b/stepmania/src/HelpDisplay.cpp @@ -77,7 +77,7 @@ void HelpDisplay::Update( float fDeltaTime ) #include "Style.h" #include "Foreach.h" -REGISTER_ACTOR_CLASS( GenreDisplay ); +REGISTER_ACTOR_CLASS( GenreDisplay ) GenreDisplay::GenreDisplay() { diff --git a/stepmania/src/RollingNumbers.cpp b/stepmania/src/RollingNumbers.cpp index 8e52c0fd00..afe5940c39 100644 --- a/stepmania/src/RollingNumbers.cpp +++ b/stepmania/src/RollingNumbers.cpp @@ -7,7 +7,7 @@ // lua start LUA_REGISTER_CLASS( RollingNumbers ) // lua end -REGISTER_ACTOR_CLASS( RollingNumbers ); +REGISTER_ACTOR_CLASS( RollingNumbers ) RollingNumbers::RollingNumbers() { diff --git a/stepmania/src/ScoreDisplayCalories.cpp b/stepmania/src/ScoreDisplayCalories.cpp index c0b8e5a45e..2010ba8c23 100644 --- a/stepmania/src/ScoreDisplayCalories.cpp +++ b/stepmania/src/ScoreDisplayCalories.cpp @@ -12,7 +12,7 @@ // lua start LUA_REGISTER_CLASS( ScoreDisplayCalories ) // lua end -REGISTER_ACTOR_CLASS( ScoreDisplayCalories ); +REGISTER_ACTOR_CLASS( ScoreDisplayCalories ) ScoreDisplayCalories::ScoreDisplayCalories() {