mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-23 06:10:03 -06:00
fix more shit
now it doesn't shit itself on startup if the BIOS paths are wrong
This commit is contained in:
@ -168,7 +168,6 @@ private:
|
||||
std::optional<melonDS::FATStorageArgs> getSDCardArgs(const std::string& key) noexcept;
|
||||
std::optional<melonDS::FATStorage> loadSDCard(const std::string& key) noexcept;
|
||||
void setBatteryLevels();
|
||||
void setDateTime();
|
||||
void reset();
|
||||
bool bootToMenu();
|
||||
melonDS::u32 decompressROM(const melonDS::u8* inContent, const melonDS::u32 inSize, std::unique_ptr<melonDS::u8[]>& outContent);
|
||||
@ -223,6 +222,10 @@ private:
|
||||
bool hotkeyPressed(int id) { return hotkeyPress & (1<<id); }
|
||||
bool hotkeyReleased(int id) { return hotkeyRelease & (1<<id); }
|
||||
|
||||
void loadRTCData();
|
||||
void saveRTCData();
|
||||
void setDateTime();
|
||||
|
||||
bool deleting;
|
||||
|
||||
int instanceID;
|
||||
|
Reference in New Issue
Block a user