From 1cd213fa608cb2d27b1c8f2ae9d47e02d8cb18f1 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Sat, 27 Oct 2012 07:51:01 +0000 Subject: Fixed more valgrind issues ( http://forum.mc-server.org/showthread.php?tid=598&pid=5139#pid5139 ) git-svn-id: http://mc-server.googlecode.com/svn/trunk@1013 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/Simulator/SimulatorManager.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source/Simulator/SimulatorManager.h') diff --git a/source/Simulator/SimulatorManager.h b/source/Simulator/SimulatorManager.h index e90acffab..fbd97b8fa 100644 --- a/source/Simulator/SimulatorManager.h +++ b/source/Simulator/SimulatorManager.h @@ -18,17 +18,17 @@ class cSimulatorManager { public: - cSimulatorManager(); + cSimulatorManager(void); ~cSimulatorManager(); - void Simulate( float a_Dt ); - void WakeUp(int a_X, int a_Y, int a_Z); + void Simulate(float a_Dt); + void WakeUp(int a_BlockX, int a_BlockY, int a_BlockZ); - void RegisterSimulator(cSimulator * a_Simulator, short a_Rate); // Takes ownership of the simulator object! + void RegisterSimulator(cSimulator * a_Simulator, int a_Rate); // Takes ownership of the simulator object! protected: - typedef std::vector *> cSimulators; + typedef std::vector > cSimulators; cSimulators m_Simulators; long long m_Ticks; -- cgit v1.2.3