From e2dc4d98df164a1f88a45b361ac9dafcbfec755f Mon Sep 17 00:00:00 2001 From: vincentlj Date: Tue, 31 Dec 2013 00:18:31 +0000 Subject: [PATCH] GPUParticle: Fix typo in header file. git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@14846 178a84e3-b1eb-0310-8ba1-8eac791a3b58 --- src/graphics/gpuparticles.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/graphics/gpuparticles.h b/src/graphics/gpuparticles.h index 470289028..cf4ab3e74 100644 --- a/src/graphics/gpuparticles.h +++ b/src/graphics/gpuparticles.h @@ -23,8 +23,8 @@ protected: virtual void draw() = 0; public: GPUParticle(scene::ISceneNode *parent, scene::ISceneManager* mgr, ITexture *tex); - virtual void GPUParticle::render(); - virtual void GPUParticle::OnRegisterSceneNode(); + virtual void render(); + virtual void OnRegisterSceneNode(); }; class ParticleSystemProxy : public scene::CParticleSystemSceneNode {