This commit is contained in:
Rich
2023-12-07 15:22:21 +00:00
parent a36e9d92ed
commit e446f9cce4
50 changed files with 766 additions and 360 deletions

View File

@@ -137,15 +137,16 @@ def config_write():
cfg[item] = t[item]
# def get_emu(option=None):
# if option:
# r = cfg[cfg['Emulator']][option]
# else:
# r = cfg[cfg['Emulator']]
# return r
def get_emu(option=None):
if option:
r = cfg[cfg["Emulator"]][option]
else:
r = cfg[cfg["Emulator"]]
return r
# def set_emu(option, data):
# cfg[cfg['Emulator']][option] = data
def set_emu(option, data):
cfg[cfg["Emulator"]][option] = data
def get_emulators():