psx - disc swapping tiny fixes

This commit is contained in:
zeromus 2014-12-16 10:59:39 +00:00
parent 7f44621f97
commit f6fd73fe1c
3 changed files with 2 additions and 2 deletions

View File

@ -366,7 +366,7 @@ namespace BizHawk.Emulation.Cores.Sony.PSX
int w = fb.width;
int h = fb.height;
BufferWidth = w;
BufferWidth = w;
BufferHeight = h;
switch (_Settings.ResolutionMode)

Binary file not shown.

View File

@ -1877,7 +1877,7 @@ EW_EXPORT s32 shock_SetDisc(void* psx, ShockDiscRef* disc)
s_CurrDisc = disc;
//set the disc to the CDC, but since its necessarily open to insert, this is false
CDC->SetDisc(false,s_CurrDisc,s_CurrDiscInfo.id);
CDC->SetDisc(true,s_CurrDisc,s_CurrDiscInfo.id);
return SHOCK_OK;
}