fix PI DMA not firing due to opy-paste error + disassembly

This commit is contained in:
CocoSimone
2022-08-12 14:49:35 +02:00
parent 2e05e81c53
commit e4c6217fd0
22 changed files with 159 additions and 91 deletions

View File

@@ -1,10 +1,9 @@
#include <Core.hpp>
#include <SDL2/SDL_events.h>
namespace n64 {
void Core::LoadROM(const std::string& rom) {
mem.LoadROM(rom);
initialized = true;
romLoaded = true;
}
void Core::Run() {
@@ -24,8 +23,7 @@ void Core::Run() {
}
}
void Core::PollInputs(u32 windowID) {
SDL_Event event;
SDL_PollEvent(&event);
void Core::PollInputs(SDL_Event e) {
}
}