Delay SI DMAs, implement TAS movie replay (WIP), and fix DIV

This commit is contained in:
CocoSimone
2022-10-18 20:46:45 +02:00
parent 6a42a212c4
commit a8fda9770c
23 changed files with 359 additions and 85 deletions

View File

@@ -1,4 +1,5 @@
#include <frontend/App.hpp>
#include "m64.hpp"
#ifdef _WIN32
#define main SDL_main
@@ -7,6 +8,9 @@
int main(int argc, char** argv) {
App* app = new App;
if(argc > 1) {
if(argc > 2) {
LoadTAS(argv[2]);
}
app->LoadROM(argv[1]);
}