VITA: Enable all stable wintermute engines and remove full build

The full build is now useless
This commit is contained in:
Le Philousophe
2022-06-26 16:02:23 +02:00
parent b2438b7810
commit aa390f55aa
+1 -21
View File
@@ -857,7 +857,7 @@ def vita():
"--enable-engines=glk",
"--enable-engines=grim",
"--enable-engines=titanic",
"--enable-engines=wintermute",
"--enable-engines=wintermute,foxtail,herocraft",
"--enable-engines=tsage",
"--enable-engines=ags",
"--enable-engines=testbed",
@@ -887,26 +887,6 @@ def vita():
platform.description = "PlayStation Vita (unstable engines)"
register_platform(platform)
# Vita full
platform = copy.deepcopy(platform)
platform.name = "vitafull"
# Don't package as it doesn't work
platform.packageable = False
# This Vita build includes all engines, but crashes on startup.
# The crash presumably happens due to the large executable size.
platform.buildconfigureargs = {
builds.ScummVMBuild: [ ],
}
platform.packaging_cmd = "psp2vpk"
platform.built_files = {
builds.ScummVMBuild: [ "scummvm.vpk" ],
}
platform.description = None
register_platform(platform)
vita()
def wii():