mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-09 16:05:07 +00:00
* useless update_appearance reduction, emissive_blocker micro optimization (saves a second of init) * merge conflict Co-authored-by: LemonInTheDark <58055496+LemonInTheDark@users.noreply.github.com> Co-authored-by: tastyfish <crazychris32@gmail.com>
8 lines
446 B
Plaintext
8 lines
446 B
Plaintext
// wrapper for update_appearance that lets me capture it in debug mode
|
|
// Does not work for callbacks unfortunately, not sure how to feel about that
|
|
// This only works if definitions of the proc get changed to _update_appearance with REGEX
|
|
// See the _compile_options comment for the regexes to use for that
|
|
#ifdef APPEARANCE_SUCCESS_TRACKING
|
|
#define update_appearance(arguments...) wrap_update_appearance(__FILE__, __LINE__, ##arguments)
|
|
#endif
|