make it single threaded for now...
Hmm don't quite get it idfk
This commit is contained in:
@@ -6,7 +6,6 @@ namespace n64 {
|
||||
Core::Core() : cpu(std::make_unique<Interpreter>(parallel)) {}
|
||||
|
||||
void Core::Stop() {
|
||||
render = false;
|
||||
pause = true;
|
||||
romLoaded = false;
|
||||
cpu->Reset();
|
||||
@@ -38,7 +37,6 @@ void Core::LoadROM(const std::string &rom_) {
|
||||
cpu->GetMem().LoadSRAM(cpu->GetMem().saveType, rom);
|
||||
cpu->GetMem().mmio.si.pif.Execute();
|
||||
pause = false;
|
||||
render = true;
|
||||
}
|
||||
|
||||
void Core::Run(float volumeL, float volumeR) {
|
||||
|
||||
@@ -19,7 +19,6 @@ struct Core {
|
||||
u32 breakpoint = 0;
|
||||
|
||||
bool pause = true;
|
||||
bool render = false;
|
||||
u32 cycles = 0;
|
||||
bool romLoaded = false;
|
||||
std::string rom;
|
||||
|
||||
Reference in New Issue
Block a user