Revert "[MIRROR] [ready]Timer queuing tweaks: binary sorted inserts and rolling buckets."

This commit is contained in:
kevinz000
2017-12-08 19:16:49 -08:00
committed by GitHub
parent 99283df12b
commit 75eab09dff
2 changed files with 103 additions and 202 deletions
+2 -2
View File
@@ -22,6 +22,6 @@ When using time2text(), please use "DDD" to find the weekday. Refrain from using
#define TICKS *world.tick_lag
#define DS2TICKS(DS) ((DS)/world.tick_lag)
#define DS2TICKS(DS) (DS/world.tick_lag)
#define TICKS2DS(T) ((T) TICKS)
#define TICKS2DS(T) (T TICKS)