More minor code cleanup.
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/trunk/supertuxkart@1424 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
parent
935e1a8c18
commit
b75c9ec869
@ -87,6 +87,7 @@ void HighscoreManager::Load()
|
||||
}
|
||||
catch(std::exception& err)
|
||||
{
|
||||
(void)err; // remove warning about unused variable
|
||||
Save();
|
||||
if(m_can_write)
|
||||
{
|
||||
|
@ -17,7 +17,6 @@
|
||||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
#ifdef BULLET
|
||||
#ifndef HEADER_MOVING_PHYSICS_H
|
||||
#define HEADER_MOVING_PHYSICS_H
|
||||
#include <plib/ssg.h>
|
||||
@ -45,7 +44,6 @@ public:
|
||||
const char *getTypeName() {return "moving physics";}
|
||||
}; // MovingPhysics
|
||||
|
||||
#endif
|
||||
#endif
|
||||
/* EOF */
|
||||
|
||||
|
@ -24,14 +24,11 @@
|
||||
#include "world.hpp"
|
||||
#include "user_config.hpp"
|
||||
|
||||
|
||||
#ifdef BULLET
|
||||
# include "btBulletDynamicsCommon.h"
|
||||
# ifdef __APPLE__
|
||||
# include <GLUT/glut.h>
|
||||
# else
|
||||
# include <GL/glut.h>
|
||||
# endif
|
||||
#include "btBulletDynamicsCommon.h"
|
||||
#ifdef __APPLE__
|
||||
# include <GLUT/glut.h>
|
||||
#else
|
||||
# include <GL/glut.h>
|
||||
#endif
|
||||
|
||||
#include "scene.hpp"
|
||||
@ -132,12 +129,9 @@ void Scene::draw(float dt)
|
||||
(*i)->update(dt);
|
||||
(*i) -> apply () ;
|
||||
|
||||
#ifdef BULLET
|
||||
if(!user_config->m_bullet_debug)
|
||||
{
|
||||
#endif
|
||||
ssgCullAndDraw ( m_scenegraph );
|
||||
#ifdef BULLET
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -187,7 +181,6 @@ void Scene::draw(float dt)
|
||||
}
|
||||
world->getPhysics()->draw();
|
||||
} // bullet_debug
|
||||
#endif
|
||||
} // for cameras
|
||||
|
||||
if (TRACK->useFog())
|
||||
|
@ -68,16 +68,11 @@ public:
|
||||
/** debug text that will be overlaid to the screen */
|
||||
std::string m_debug_text[10];
|
||||
|
||||
World(const RaceSetup& raceSetup);
|
||||
virtual ~World();
|
||||
#ifndef BULLET
|
||||
float GetHOT(sgVec3 start, sgVec3 end, ssgLeaf** leaf, sgVec4** nrm)
|
||||
{return m_track->GetHOT(start, end, leaf, nrm);}
|
||||
int Collision(sgSphere* s, AllHits *a) const {return m_track->Collision(s,a); }
|
||||
#endif
|
||||
void update(float delta);
|
||||
void restartRace();
|
||||
void disableRace(); // Put race into limbo phase
|
||||
World(const RaceSetup& raceSetup);
|
||||
virtual ~World();
|
||||
void update(float delta);
|
||||
void restartRace();
|
||||
void disableRace(); // Put race into limbo phase
|
||||
|
||||
PlayerKart* getPlayerKart(int player)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user