various cleanup/comment changes

This commit is contained in:
AJ Kelly
2011-02-27 00:52:32 -06:00
parent 83b4aff301
commit f2e7954054
7 changed files with 8 additions and 12 deletions
-1
View File
@@ -94,7 +94,6 @@ void BPMDisplay::Update( float fDeltaTime )
}
}
void BPMDisplay::SetBPMRange( const DisplayBpms &bpms )
{
ASSERT( !bpms.vfBpms.empty() );
+1 -3
View File
@@ -1,5 +1,3 @@
/** @brief BPMDisplay - displays a BPM or a range of BPMs. */
#ifndef BPM_DISPLAY_H
#define BPM_DISPLAY_H
@@ -11,7 +9,7 @@ class Song;
class Course;
struct DisplayBpms;
/** @brief Display the BPM/range of them as requested. */
/** @brief Displays a BPM or a range of BPMs. */
class BPMDisplay : public BitmapText
{
public:
+2 -4
View File
@@ -1,5 +1,3 @@
/* Character - An persona that defines attacks for use in battle. */
#ifndef Character_H
#define Character_H
@@ -9,14 +7,14 @@
struct lua_State;
typedef lua_State Lua;
/** @brief A persona that defines attacks for use in battle. */
class Character
{
public:
Character();
~Character() { }
bool Load( RString sCharDir ); // return true if success
bool Load( RString sCharDir ); // return true if successful
RString GetTakingABreakPath() const;
RString GetCardPath() const { return m_sCardPath; }
-1
View File
@@ -174,7 +174,6 @@ void ScreenOptionsExportPackage::ExportOptions( int iRow, const vector<PlayerNum
}
/*
* (c) 2002-2004 Chris Danford
* All rights reserved.
+1
View File
@@ -6,6 +6,7 @@
class Course;
/** @brief A menu for exporting packages. */
class ScreenOptionsExportPackage : public ScreenOptions
{
public:
+1
View File
@@ -133,6 +133,7 @@ private:
RageTimer m_timerToggleCursor;
};
/** @brief Displays a text entry box and keyboard over the top of another screen. */
class ScreenTextEntryVisual: public ScreenTextEntry
{
public: