Fix windows + Implement some RDP reads and writes

This commit is contained in:
CocoSimone
2022-08-22 19:54:56 +02:00
parent 68be852238
commit bcde8570b6
10 changed files with 85 additions and 57 deletions

View File

@@ -2,10 +2,10 @@
#include <frontend/App.hpp>
int main(int argc, char* argv[]) {
App app;
App* app = new App;
if(argc > 1) {
app.LoadROM(argv[1]);
app->LoadROM(argv[1]);
}
app.Run();
app->Run();
return 0;
}