mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-06-28 09:59:41 -06:00
get the bulk of the RTC functionality going
This commit is contained in:
@ -140,6 +140,11 @@ int MouseHideSeconds;
|
||||
|
||||
bool PauseLostFocus;
|
||||
|
||||
int RTCMode;
|
||||
std::string RTCLastTime;
|
||||
std::string RTCLastHostTime;
|
||||
std::string RTCNewTime;
|
||||
|
||||
bool DSBatteryLevelOkay;
|
||||
int DSiBatteryLevel;
|
||||
bool DSiBatteryCharging;
|
||||
@ -339,6 +344,11 @@ ConfigEntry ConfigFile[] =
|
||||
{"MouseHideSeconds", 0, &MouseHideSeconds, 5, false},
|
||||
{"PauseLostFocus", 1, &PauseLostFocus, false, false},
|
||||
|
||||
{"RTCMode", 0, &RTCMode, 0, true},
|
||||
{"RTCLastTime", 2, &RTCLastTime, (std::string)"", true},
|
||||
{"RTCLastHostTime", 2, &RTCLastHostTime, (std::string)"", true},
|
||||
{"RTCNewTime", 2, &RTCNewTime, (std::string)"", true},
|
||||
|
||||
{"DSBatteryLevelOkay", 1, &DSBatteryLevelOkay, true, true},
|
||||
{"DSiBatteryLevel", 0, &DSiBatteryLevel, 0xF, true},
|
||||
{"DSiBatteryCharging", 1, &DSiBatteryCharging, true, true},
|
||||
|
Reference in New Issue
Block a user