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 -1
View File
@@ -1364,7 +1364,7 @@ OptionRowHandler* OptionRowHandlerUtil::MakeSimple( const MenuRowDef &mr )
pHand->m_Def.m_sName = mr.sName;
FontCharAliases::ReplaceMarkers( pHand->m_Def.m_sName ); // Allow special characters
pHand->m_Def.m_vEnabledForPlayers.clear();
if( mr.pfnEnabled? mr.pfnEnabled():mr.bEnabled )
{
+1 -2
View File
@@ -156,7 +156,7 @@ void ScreenOptionsExportPackage::ProcessMenuStart( const InputEventPlus &input )
RString sDirToExport = m_vsPossibleDirsToExport[ iCurRow ];
RString sPackageName = ReplaceInvalidFileNameChars( sDirToExport + ".smzip" );
RString sError;
if( ExportPackage(sPackageName, sDirToExport, sError) )
ScreenPrompt::Prompt( SM_None, ssprintf("Exported '%s' to the desktop", sDirToExport.c_str()) );
@@ -174,7 +174,6 @@ void ScreenOptionsExportPackage::ExportOptions( int iRow, const vector<PlayerNum
}
/*
* (c) 2002-2004 Chris Danford
* All rights reserved.
+2 -1
View File
@@ -6,6 +6,7 @@
class Course;
/** @brief A menu for exporting packages. */
class ScreenOptionsExportPackage : public ScreenOptions
{
public:
@@ -15,7 +16,7 @@ public:
protected:
virtual void ImportOptions( int iRow, const vector<PlayerNumber> &vpns );
virtual void ExportOptions( int iRow, const vector<PlayerNumber> &vpns );
virtual void ProcessMenuStart( const InputEventPlus &input );
vector<RString> m_vsPossibleDirsToExport;
+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: