Fix missing logging on memory manager initalization.

This commit is contained in:
squidbus 2024-07-15 14:22:47 -07:00 committed by TheTurtle
parent 4fd3af995e
commit 685b0bfd5e
2 changed files with 14 additions and 9 deletions

View file

@ -31,9 +31,9 @@ private:
void LoadSystemModules(const std::filesystem::path& file);
Core::MemoryManager* memory;
Input::GameController* controller = Common::Singleton<Input::GameController>::Instance();
Core::Linker* linker = Common::Singleton<Core::Linker>::Instance();
Frontend::WindowSDL window;
Input::GameController* controller;
Core::Linker* linker;
std::unique_ptr<Frontend::WindowSDL> window;
};
} // namespace Core