Fixed another unresolved symbol
removed freevideo/freedsp git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2190 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
e979db862c
commit
ec71298b06
|
@ -321,7 +321,6 @@ THREAD_RETURN EmuThread(void *pArg)
|
||||||
VideoInitialize.bWii = _CoreParameter.bWii;
|
VideoInitialize.bWii = _CoreParameter.bWii;
|
||||||
VideoInitialize.bUseDualCore = _CoreParameter.bUseDualCore;
|
VideoInitialize.bUseDualCore = _CoreParameter.bUseDualCore;
|
||||||
// Needed for Stop and Start
|
// Needed for Stop and Start
|
||||||
Plugins.FreeVideo();
|
|
||||||
Plugins.GetVideo()->Initialize(&VideoInitialize); // Call the dll
|
Plugins.GetVideo()->Initialize(&VideoInitialize); // Call the dll
|
||||||
|
|
||||||
// Under linux, this is an X11 Display, not an HWND!
|
// Under linux, this is an X11 Display, not an HWND!
|
||||||
|
@ -343,7 +342,6 @@ THREAD_RETURN EmuThread(void *pArg)
|
||||||
dspInit.pEmulatorState = (int *)&PowerPC::state;
|
dspInit.pEmulatorState = (int *)&PowerPC::state;
|
||||||
dspInit.bWii = _CoreParameter.bWii;
|
dspInit.bWii = _CoreParameter.bWii;
|
||||||
// Needed for Stop and Start
|
// Needed for Stop and Start
|
||||||
Plugins.FreeDSP();
|
|
||||||
Plugins.GetDSP()->Initialize((void *)&dspInit);
|
Plugins.GetDSP()->Initialize((void *)&dspInit);
|
||||||
|
|
||||||
// Load and Init PadPlugin
|
// Load and Init PadPlugin
|
||||||
|
|
|
@ -107,6 +107,9 @@ const SPADStatus& PlayRecord()
|
||||||
}
|
}
|
||||||
return(recordBuffer[count++]);
|
return(recordBuffer[count++]);
|
||||||
}
|
}
|
||||||
|
// TODO: fix this dirty hack to stop missing symbols
|
||||||
|
void __Log(int log, const char *format, ...) {}
|
||||||
|
void __Logv(int log, int v, const char *format, ...) {}
|
||||||
|
|
||||||
void LoadRecord()
|
void LoadRecord()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue