mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-29 02:51:41 +00:00
* Save 0.4s by shaving off a lot of smaller init costs * update modular Co-authored-by: Mothblocks <35135081+Mothblocks@users.noreply.github.com> Co-authored-by: Tom <8881105+tf-4@users.noreply.github.com>
9 lines
395 B
Plaintext
9 lines
395 B
Plaintext
/// Uses the left operator when compiling, uses the right operator when not compiling.
|
|
// Currently uses the CBT macro, but if http://www.byond.com/forum/post/2831057 is ever added,
|
|
// or if map tools ever agree on a standard, this should switch to use that.
|
|
#ifdef CBT
|
|
#define MAP_SWITCH(compile_time, map_time) ##compile_time
|
|
#else
|
|
#define MAP_SWITCH(compile_time, map_time) ##map_time
|
|
#endif
|