CoreTiming: Move the 'Globals' instance into Core::System.

This commit is contained in:
Admiral H. Curtiss
2022-11-23 21:35:21 +01:00
parent 70f353fb37
commit 86f17511fc
8 changed files with 53 additions and 14 deletions

View File

@ -12,6 +12,10 @@ namespace AudioInterface
{
class AudioInterfaceState;
};
namespace CoreTiming
{
struct Globals;
}
namespace DSP
{
class DSPState;
@ -76,6 +80,7 @@ public:
void SetAudioDumpStarted(bool started);
AudioInterface::AudioInterfaceState& GetAudioInterfaceState() const;
CoreTiming::Globals& GetCoreTimingGlobals() const;
DSP::DSPState& GetDSPState() const;
DVDInterface::DVDInterfaceState& GetDVDInterfaceState() const;
DVDThread::DVDThreadState& GetDVDThreadState() const;