mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
Fixed r6235 for the Mac and Linux builds. Thanks, glennricster.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6238 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -444,7 +444,7 @@ void Video_PixelEngineWrite32(const u32 _Data, const u32 _Address)
|
|||||||
PixelEngine::Write32(_Data, _Address);
|
PixelEngine::Write32(_Data, _Address);
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void Video_GatherPipeBursted(void)
|
void Video_GatherPipeBursted(void)
|
||||||
{
|
{
|
||||||
CommandProcessor::GatherPipeBursted();
|
CommandProcessor::GatherPipeBursted();
|
||||||
}
|
}
|
||||||
|
@ -466,7 +466,7 @@ void Video_PixelEngineWrite32(const u32 _Data, const u32 _Address)
|
|||||||
PixelEngine::Write32(_Data, _Address);
|
PixelEngine::Write32(_Data, _Address);
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void Video_GatherPipeBursted(void)
|
void Video_GatherPipeBursted(void)
|
||||||
{
|
{
|
||||||
CommandProcessor::GatherPipeBursted();
|
CommandProcessor::GatherPipeBursted();
|
||||||
}
|
}
|
||||||
|
@ -201,7 +201,7 @@ void Initialize(void *init)
|
|||||||
// Now the window handle is written
|
// Now the window handle is written
|
||||||
_pVideoInitialize->pWindowHandle = g_VideoInitialize.pWindowHandle;
|
_pVideoInitialize->pWindowHandle = g_VideoInitialize.pWindowHandle;
|
||||||
|
|
||||||
OSD::AddMessage("Dolphin Direct3D9 Video Plugin.", 5000);
|
OSD::AddMessage("Dolphin OpenGL Video Plugin.", 5000);
|
||||||
s_PluginInitialized = true;
|
s_PluginInitialized = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -238,7 +238,8 @@ static void check_DoState() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Run from the CPU thread
|
// Run from the CPU thread
|
||||||
void DoState(unsigned char **ptr, int mode) {
|
void DoState(unsigned char **ptr, int mode)
|
||||||
|
{
|
||||||
s_doStateArgs.ptr = ptr;
|
s_doStateArgs.ptr = ptr;
|
||||||
s_doStateArgs.mode = mode;
|
s_doStateArgs.mode = mode;
|
||||||
#if defined(HAVE_X11) && HAVE_X11
|
#if defined(HAVE_X11) && HAVE_X11
|
||||||
@ -497,7 +498,7 @@ void Video_PixelEngineWrite32(const u32 _Data, const u32 _Address)
|
|||||||
PixelEngine::Write32(_Data, _Address);
|
PixelEngine::Write32(_Data, _Address);
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void Video_GatherPipeBursted(void)
|
void Video_GatherPipeBursted(void)
|
||||||
{
|
{
|
||||||
CommandProcessor::GatherPipeBursted();
|
CommandProcessor::GatherPipeBursted();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user