mirror of
https://github.com/johndoe6345789/SDL3CPlusPlus.git
synced 2026-04-29 16:15:00 +00:00
refactor: Update LogRuntimeConfig to use fully qualified ILogger type and stub SetAudioPlayer method in LuaScriptService for service-based audio handling
This commit is contained in:
@@ -25,6 +25,8 @@
|
||||
|
||||
using namespace sdl3cpp::services;
|
||||
|
||||
using namespace sdl3cpp::services;
|
||||
|
||||
namespace sdl3cpp::app {
|
||||
std::atomic<bool> g_signalReceived{false};
|
||||
|
||||
@@ -242,7 +244,7 @@ AppOptions ParseCommandLine(int argc, char** argv) {
|
||||
return options;
|
||||
}
|
||||
|
||||
void LogRuntimeConfig(const RuntimeConfig& config, std::shared_ptr<services::ILogger> logger) {
|
||||
void LogRuntimeConfig(const RuntimeConfig& config, std::shared_ptr<sdl3cpp::services::ILogger> logger) {
|
||||
if (logger) {
|
||||
logger->TraceVariable("config.width", config.width);
|
||||
logger->TraceVariable("config.height", config.height);
|
||||
|
||||
Reference in New Issue
Block a user