mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Remove Global Declarations from Movie
This commit is contained in:
@ -48,15 +48,6 @@ struct ControllerState
|
||||
static_assert(sizeof(ControllerState) == 8, "ControllerState should be 8 bytes");
|
||||
#pragma pack(pop)
|
||||
|
||||
// Global declarations
|
||||
extern bool g_bDiscChange, g_bClearSave, g_bReset;
|
||||
extern u64 g_titleID;
|
||||
|
||||
extern u64 g_currentFrame, g_totalFrames;
|
||||
extern u64 g_currentLagCount;
|
||||
extern u64 g_currentInputCount, g_totalInputCount;
|
||||
extern std::string g_discChange;
|
||||
|
||||
#pragma pack(push, 1)
|
||||
struct DTMHeader
|
||||
{
|
||||
@ -130,6 +121,18 @@ bool IsMovieActive();
|
||||
bool IsReadOnly();
|
||||
u64 GetRecordingStartTime();
|
||||
|
||||
u64 GetCurrentFrame();
|
||||
u64 GetTotalFrames();
|
||||
u64 GetCurrentInputCount();
|
||||
u64 GetTotalInputCount();
|
||||
u64 GetCurrentLagCount();
|
||||
u64 GetTotalLagCount();
|
||||
|
||||
void SetClearSave(bool enabled);
|
||||
void SignalDiscChange(const std::string& new_disc_filename);
|
||||
void SetReset(bool reset);
|
||||
void SetTitleId(u64 title_id);
|
||||
|
||||
bool IsConfigSaved();
|
||||
bool IsDualCore();
|
||||
bool IsProgressive();
|
||||
|
Reference in New Issue
Block a user