1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-07 03:13:49 +00:00

Fix bug with ucode loaded each frame.

This commit is contained in:
Sergey Lipskiy 2015-02-17 19:33:55 +06:00
parent 002ddf595c
commit d790380de0

View File

@ -157,8 +157,11 @@ void RSP_ProcessDList()
u32 uc_dstart = *(u32*)&DMEM[0x0FD8];
u32 uc_dsize = *(u32*)&DMEM[0x0FDC];
if ((uc_start != RSP.uc_start) || (uc_dstart != RSP.uc_dstart))
if ((uc_start != RSP.uc_start) || (uc_dstart != RSP.uc_dstart)) {
gSPLoadUcodeEx(uc_start, uc_dstart, uc_dsize);
RSP.uc_start = uc_start;
RSP.uc_dstart = uc_dstart;
}
if (GBI.getMicrocodeType() == Turbo3D)
RunTurbo3D();