mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-10 10:08:51 +00:00
other experimental commit:
applied mlkbouba patch to make Mario Strikers Charged Football work (i do not own the game so please test). some minor tweaks to the plugins to improve performance. for game that do not use xfb the best settings are dual core enabled, audio throtle disabled, frame limit set to the desired value, and xfb off. change the frameskip calculations to use fps instead of vps as in dual core vps != fps caused by unresolved sync problems, till this problems are fixed the best for game play is calculate times in base of fps. please test and let me know the results git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5239 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
9dae690951
commit
beee4f4804
5 changed files with 22 additions and 17 deletions
|
@ -86,6 +86,7 @@ static bool s_bScreenshot = false;
|
|||
static Common::CriticalSection s_criticalScreenshot;
|
||||
static char s_sScreenshotName[1024];
|
||||
static LPDIRECT3DSURFACE9 ScreenShootMEMSurface = NULL;
|
||||
extern volatile u32 s_swapRequested;
|
||||
|
||||
|
||||
// State translation lookup tables
|
||||
|
@ -566,13 +567,13 @@ void CheckForResize()
|
|||
}
|
||||
}
|
||||
|
||||
extern volatile u32 s_swapRequested;
|
||||
|
||||
|
||||
void Renderer::RenderToXFB(u32 xfbAddr, u32 fbWidth, u32 fbHeight, const EFBRectangle& sourceRc)
|
||||
{
|
||||
if(!fbWidth || !fbHeight)
|
||||
return;
|
||||
VideoFifo_CheckEFBAccess();
|
||||
//VideoFifo_CheckEFBAccess();
|
||||
// If we're about to write to a requested XFB, make sure the previous
|
||||
// contents make it to the screen first.
|
||||
if (g_ActiveConfig.bUseXFB)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue