mirror of https://github.com/mgba-emu/mgba.git
Python: Add more mCore functions
This commit is contained in:
parent
9d44445d64
commit
adc45c9bdc
|
@ -63,6 +63,15 @@ class Core(object):
|
|||
def loadROM(self, vf):
|
||||
return bool(self._core.loadROM(self._core, vf.handle))
|
||||
|
||||
def loadSave(self, vf):
|
||||
return bool(self._core.loadSave(self._core, vf.handle))
|
||||
|
||||
def loadTemporarySave(self, vf):
|
||||
return bool(self._core.loadTemporarySave(self._core, vf.handle))
|
||||
|
||||
def loadPatch(self, vf):
|
||||
return bool(self._core.loadPatch(self._core, vf.handle))
|
||||
|
||||
def autoloadSave(self):
|
||||
return bool(lib.mCoreAutoloadSave(self._core))
|
||||
|
||||
|
|
Loading…
Reference in New Issue