Cleanup, fix RomFS reads (todo: revisit), add CFG::GetConfigInfoBlk2
This commit is contained in:
@@ -8,6 +8,9 @@ class CFGService {
|
||||
Memory& mem;
|
||||
MAKE_LOG_FUNCTION(log, cfgLogger)
|
||||
|
||||
// Service functions
|
||||
void getConfigInfoBlk2(u32 messagePointer);
|
||||
|
||||
public:
|
||||
CFGService(Memory& mem) : mem(mem) {}
|
||||
void reset();
|
||||
|
||||
@@ -63,4 +63,10 @@ public:
|
||||
DSPService(Memory& mem) : mem(mem) {}
|
||||
void reset();
|
||||
void handleSyncRequest(u32 messagePointer);
|
||||
|
||||
enum class SoundOutputMode : u8 {
|
||||
Mono = 0,
|
||||
Stereo = 1,
|
||||
Surround = 2
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user