We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4181b9 commit ccea554Copy full SHA for ccea554
src/m64py/frontend/worker.py
@@ -88,7 +88,9 @@ def core_load(self, path=None):
88
else:
89
self.library_path = self.settings.qset.value(
90
"Paths/Library", find_library(CORE_NAME))
91
- self.core.core_load(str(self.library_path))
+ if not self.library_path:
92
+ self.library_path = find_library(CORE_NAME)
93
+ self.core.core_load(self.library_path)
94
95
def core_unload(self):
96
"""Unloads core library."""
0 commit comments