mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 10:09:36 -06:00
Core/Movie: Refactor to class, move to System.
A bit of global state remains (the `header` in `BeginRecordingInput()`) due to unclear lifetime requirements.
This commit is contained in:
@ -74,6 +74,10 @@ namespace MemoryInterface
|
||||
{
|
||||
class MemoryInterfaceManager;
|
||||
};
|
||||
namespace Movie
|
||||
{
|
||||
class MovieManager;
|
||||
}
|
||||
namespace PixelEngine
|
||||
{
|
||||
class PixelEngineManager;
|
||||
@ -161,6 +165,7 @@ public:
|
||||
Memory::MemoryManager& GetMemory() const;
|
||||
MemoryInterface::MemoryInterfaceManager& GetMemoryInterface() const;
|
||||
PowerPC::MMU& GetMMU() const;
|
||||
Movie::MovieManager& GetMovie() const;
|
||||
PixelEngine::PixelEngineManager& GetPixelEngine() const;
|
||||
PixelShaderManager& GetPixelShaderManager() const;
|
||||
PowerPC::PowerPCManager& GetPowerPC() const;
|
||||
|
Reference in New Issue
Block a user