diff options
author | Tycho Bickerstaff <work.tycho@gmail.com> | 2013-12-21 16:08:01 +0100 |
---|---|---|
committer | Tycho Bickerstaff <work.tycho@gmail.com> | 2013-12-21 16:08:01 +0100 |
commit | 5034ae29b889b37c10524678e4b92d8ca700bde7 (patch) | |
tree | 20b64b211c4c100f770bafad70b1ddc6cbeb2464 /src/Simulator/RedstoneSimulator.h | |
parent | ChunkSender is now warnings clean (diff) | |
download | cuberite-5034ae29b889b37c10524678e4b92d8ca700bde7.tar cuberite-5034ae29b889b37c10524678e4b92d8ca700bde7.tar.gz cuberite-5034ae29b889b37c10524678e4b92d8ca700bde7.tar.bz2 cuberite-5034ae29b889b37c10524678e4b92d8ca700bde7.tar.lz cuberite-5034ae29b889b37c10524678e4b92d8ca700bde7.tar.xz cuberite-5034ae29b889b37c10524678e4b92d8ca700bde7.tar.zst cuberite-5034ae29b889b37c10524678e4b92d8ca700bde7.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Simulator/RedstoneSimulator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Simulator/RedstoneSimulator.h b/src/Simulator/RedstoneSimulator.h index 309135497..903ac8775 100644 --- a/src/Simulator/RedstoneSimulator.h +++ b/src/Simulator/RedstoneSimulator.h @@ -19,7 +19,7 @@ public: cRedstoneSimulator(cWorld & a_World); ~cRedstoneSimulator(); - virtual void Simulate(float a_Dt) override {}; // Not used in this simulator + virtual void Simulate(float /*a_Dt*/) override {}; // Not used in this simulator virtual void SimulateChunk(float a_Dt, int a_ChunkX, int a_ChunkZ, cChunk * a_Chunk) override; virtual bool IsAllowedBlock( BLOCKTYPE a_BlockType ) override { return IsRedstone(a_BlockType); } @@ -269,4 +269,4 @@ private: default: return false; } } -};
\ No newline at end of file +}; |