mirror of
https://github.com/johndoe6345789/SDL3CPlusPlus.git
synced 2026-04-30 16:45:02 +00:00
feat: Enforce "no macros" policy with CI checks, compiler warnings, and documentation
This commit is contained in:
@@ -240,8 +240,8 @@ AppOptions ParseCommandLine(int argc, char** argv) {
|
||||
|
||||
void LogRuntimeConfig(const RuntimeConfig& config) {
|
||||
auto& logger = sdl3cpp::logging::Logger::GetInstance();
|
||||
logger.TraceVariable("config.width", config.width);
|
||||
logger.TraceVariable("config.height", config.height);
|
||||
logger.TraceVariable("config.width", static_cast<int>(config.width));
|
||||
logger.TraceVariable("config.height", static_cast<int>(config.height));
|
||||
logger.TraceVariable("config.scriptPath", config.scriptPath.string());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user