Fixed endianness for parallel-rdp
This commit is contained in:
@@ -4,6 +4,9 @@
|
||||
struct App {
|
||||
App() : window(core) {};
|
||||
void Run();
|
||||
inline void LoadROM(const std::string& path) {
|
||||
core.LoadROM(path);
|
||||
}
|
||||
private:
|
||||
n64::Core core;
|
||||
Window window;
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
Window::Window(n64::Core& core) {
|
||||
InitSDL();
|
||||
InitParallelRDP(core.GetRDRAM(), window);
|
||||
InitParallelRDP(core.mem.GetRDRAM(), window);
|
||||
//InitImgui();
|
||||
NFD::Init();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user