mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-08-30 22:26:49 +00:00
Emulator: Reorder struct
This commit is contained in:
parent
e955056e81
commit
3c8dd1a39e
1 changed files with 3 additions and 1 deletions
|
@ -40,9 +40,11 @@ enum class ROMType {
|
|||
|
||||
class Emulator {
|
||||
EmulatorConfig config;
|
||||
|
||||
Memory memory;
|
||||
// We want memory to be constructed before the rest of the emulator, so it's at the top of the struct
|
||||
CPU cpu;
|
||||
GPU gpu;
|
||||
Memory memory;
|
||||
Kernel kernel;
|
||||
std::unique_ptr<Audio::DSPCore> dsp;
|
||||
Scheduler scheduler;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue