Enable use of vblog in plugins

This commit is contained in:
WarmUpTill 2023-04-10 02:09:16 +02:00 committed by WarmUpTill
parent 9bedbf6fb8
commit ffca124762

View File

@ -7,7 +7,7 @@
#define blog(level, msg, ...) blog(level, "[adv-ss] " msg, ##__VA_ARGS__)
#define vblog(level, msg, ...) \
if (switcher->verbose) { \
if (GetSwitcher()->verbose) { \
blog(level, msg, ##__VA_ARGS__); \
}