summaryrefslogtreecommitdiffstats
path: root/converter/cTimer.cpp
diff options
context:
space:
mode:
authoradmin@omencraft.com <admin@omencraft.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2011-11-04 20:28:58 +0100
committeradmin@omencraft.com <admin@omencraft.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2011-11-04 20:28:58 +0100
commitef4ec35417a58c4a564c1ed83ca69074cd94d95a (patch)
treeca5c2b708991f2410ec553c76c6843c50e1fb6d8 /converter/cTimer.cpp
parentChanges to the denotch map converter. Now runs 20 times faster than before. Not done yet. (diff)
downloadcuberite-ef4ec35417a58c4a564c1ed83ca69074cd94d95a.tar
cuberite-ef4ec35417a58c4a564c1ed83ca69074cd94d95a.tar.gz
cuberite-ef4ec35417a58c4a564c1ed83ca69074cd94d95a.tar.bz2
cuberite-ef4ec35417a58c4a564c1ed83ca69074cd94d95a.tar.lz
cuberite-ef4ec35417a58c4a564c1ed83ca69074cd94d95a.tar.xz
cuberite-ef4ec35417a58c4a564c1ed83ca69074cd94d95a.tar.zst
cuberite-ef4ec35417a58c4a564c1ed83ca69074cd94d95a.zip
Diffstat (limited to 'converter/cTimer.cpp')
-rw-r--r--converter/cTimer.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/converter/cTimer.cpp b/converter/cTimer.cpp
deleted file mode 100644
index afd7b4db1..000000000
--- a/converter/cTimer.cpp
+++ /dev/null
@@ -1,9 +0,0 @@
-#include "cTimer.h"
-
-double diffclock(clock_t clock1,clock_t clock2)
-{
- double diffticks=clock1-clock2;
- double diffms=(diffticks*10)/CLOCKS_PER_SEC;
- return diffms;
-}
-