Merge pull request #738 from LukeUsher/fixing-jsrf
Fix JSRF Regression after NV2A merge
This commit is contained in:
commit
761143945c
|
@ -4871,7 +4871,7 @@ VOID WINAPI XTL::EMUPATCH(D3DDevice_SetVertexDataColor)
|
|||
// ******************************************************************
|
||||
VOID WINAPI XTL::EMUPATCH(D3DDevice_End)()
|
||||
{
|
||||
//FUNC_EXPORTS
|
||||
FUNC_EXPORTS
|
||||
|
||||
LOG_FUNC();
|
||||
|
||||
|
|
|
@ -71,6 +71,7 @@ namespace xboxkrnl
|
|||
#include "EmuFS.h"
|
||||
#include "EmuKrnl.h"
|
||||
#include "EmuNV2A.h"
|
||||
#include "HLEIntercept.h"
|
||||
#include "nv2a_int.h" // from https://github.com/espes/xqemu/tree/xbox/hw/xbox
|
||||
|
||||
#include <gl\glew.h>
|
||||
|
@ -3749,5 +3750,8 @@ void EmuNV2A_Init()
|
|||
|
||||
pfifo.puller_thread = std::thread(pfifo_puller_thread);
|
||||
|
||||
vblank_thread = std::thread(nv2a_vblank_thread);;
|
||||
// Only spawn VBlank thread when LLE is enabled
|
||||
if (bLLE_GPU) {
|
||||
vblank_thread = std::thread(nv2a_vblank_thread);;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue