mirror of
https://github.com/Melon-Bread/RetroUFO
synced 2024-11-24 16:28:30 -05:00
The manual override UI controls work now
This commit is contained in:
parent
c361486d5c
commit
487df92020
@ -112,9 +112,12 @@ class Form(QDialog):
|
|||||||
""" Where the magic happens """
|
""" Where the magic happens """
|
||||||
|
|
||||||
# If a platform and/or architecture is not supplied it is grabbed automatically
|
# If a platform and/or architecture is not supplied it is grabbed automatically
|
||||||
platform = self.get_platform() # TODO: rename this var to prevent conflict
|
platform = self.cmbboxPlatform.currentText().lower() if not self.chkboxPlatformDetect.isChecked() \
|
||||||
architecture = self.get_architecture()
|
else self.get_platform() # TODO: rename this var to prevent conflict
|
||||||
location = CORE_LOCATION[platform]
|
architecture = self.cmbboxArchitecture.currentText().lower() if not self.chkboxPlatformDetect.isChecked() \
|
||||||
|
else self.get_architecture()
|
||||||
|
location = self.leditCoreLocation.text() if not self.chkboxLocationDetect.isChecked() \
|
||||||
|
else CORE_LOCATION[platform]
|
||||||
|
|
||||||
self.download_cores(platform, architecture)
|
self.download_cores(platform, architecture)
|
||||||
self.extract_cores(location)
|
self.extract_cores(location)
|
||||||
|
Loading…
Reference in New Issue
Block a user