mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
DVDInterface: Make a global a local variable
This commit is contained in:
@ -242,7 +242,7 @@ static u32 NextLength;
|
|||||||
|
|
||||||
static u32 g_ErrorCode = 0;
|
static u32 g_ErrorCode = 0;
|
||||||
static bool g_bDiscInside = false;
|
static bool g_bDiscInside = false;
|
||||||
bool g_bStream = false;
|
static bool g_bStream = false;
|
||||||
static bool g_bStopAtTrackEnd = false;
|
static bool g_bStopAtTrackEnd = false;
|
||||||
static int finish_execute_command = 0;
|
static int finish_execute_command = 0;
|
||||||
static int dtk = 0;
|
static int dtk = 0;
|
||||||
|
@ -105,7 +105,6 @@ bool IsDiscInside();
|
|||||||
void ChangeDisc(const std::string& fileName);
|
void ChangeDisc(const std::string& fileName);
|
||||||
|
|
||||||
// DVD Access Functions
|
// DVD Access Functions
|
||||||
extern bool g_bStream;
|
|
||||||
bool ChangePartition(u64 offset);
|
bool ChangePartition(u64 offset);
|
||||||
void ExecuteCommand(u32 command_0, u32 command_1, u32 command_2, u32 output_address, u32 output_length,
|
void ExecuteCommand(u32 command_0, u32 command_1, u32 command_2, u32 output_address, u32 output_length,
|
||||||
bool write_to_DIIMMBUF, int callback_event_type);
|
bool write_to_DIIMMBUF, int callback_event_type);
|
||||||
|
Reference in New Issue
Block a user