fix PI DMA not firing due to opy-paste error + disassembly
This commit is contained in:
@@ -26,13 +26,17 @@ void App::Run() {
|
||||
} break;
|
||||
}
|
||||
}
|
||||
|
||||
core.PollInputs(event);
|
||||
}
|
||||
|
||||
if(core.initialized)
|
||||
if(core.romLoaded)
|
||||
core.Run();
|
||||
|
||||
if(core.initialized) UpdateScreenParallelRdp(window, core.GetVI());
|
||||
else UpdateScreenParallelRdpNoGame(window);
|
||||
if(core.romLoaded)
|
||||
UpdateScreenParallelRdp(window, core.GetVI());
|
||||
else
|
||||
UpdateScreenParallelRdpNoGame(window);
|
||||
|
||||
SDL_Delay(16);
|
||||
}
|
||||
|
||||
@@ -11,6 +11,7 @@ target_include_directories(frontend PUBLIC
|
||||
.
|
||||
..
|
||||
../../external
|
||||
../../external/capstone/include
|
||||
../../external/parallel-rdp
|
||||
../../external/parallel-rdp/parallel-rdp-standalone/vulkan
|
||||
../../external/parallel-rdp/parallel-rdp-standalone/util
|
||||
|
||||
@@ -18,6 +18,7 @@ target_include_directories(frontend-imgui PUBLIC
|
||||
../../n64/core/cpu
|
||||
../../n64/core/cpu/registers
|
||||
../../../external
|
||||
../../../external/capstone/include
|
||||
../../../external/parallel-rdp/parallel-rdp-standalone
|
||||
../../../external/parallel-rdp/parallel-rdp-standalone/vulkan
|
||||
../../../external/parallel-rdp/parallel-rdp-standalone/util
|
||||
|
||||
@@ -8,6 +8,7 @@ Window::Window(const n64::Core& core) {
|
||||
InitSDL();
|
||||
InitParallelRDP(core.GetRDRAM(), window);
|
||||
//InitImgui();
|
||||
NFD::Init();
|
||||
}
|
||||
|
||||
[[nodiscard]] bool Window::gotClosed(SDL_Event event) {
|
||||
|
||||
Reference in New Issue
Block a user