mirror of
https://github.com/gryf/e-uae-wrapper.git
synced 2026-02-08 02:05:46 +01:00
Removed load/save for state
Since loading/saving state for e-uae seems not working anymore, methods for keeping saves in a place was removed.
This commit is contained in:
@@ -35,18 +35,12 @@ class Wrapper(base.ArchiveBase):
|
||||
if not self._extract():
|
||||
return False
|
||||
|
||||
self._load_save()
|
||||
|
||||
if not self._copy_conf():
|
||||
return False
|
||||
|
||||
if not self._run_emulator():
|
||||
return False
|
||||
|
||||
if self._get_saves_dir():
|
||||
if not self._save_save():
|
||||
return False
|
||||
|
||||
return self._make_archive()
|
||||
|
||||
def _make_archive(self):
|
||||
@@ -59,9 +53,6 @@ class Wrapper(base.ArchiveBase):
|
||||
curdir = os.path.abspath('.')
|
||||
os.chdir(self.dir)
|
||||
|
||||
saves = self._get_saves_dir()
|
||||
if saves:
|
||||
shutil.rmtree(saves)
|
||||
os.unlink('.uaerc')
|
||||
|
||||
title = self._get_title()
|
||||
|
||||
Reference in New Issue
Block a user