Hi, I would like to report this little issue, when moving the emulato's folder to another path, this error occurs:
I get that it can be solved by removing the registry key, but it can be solved by checking first if the config path exists, if not, it falls back to the default path:
brick_config_path = self._settings.value("brick/config", "./assets/E23PlusMarkII96in1.brick")
if not os.path.exists(brick_config_path):
brick_config_path = "./assets/E23PlusMarkII96in1.brick"
self._openBrick(brick_config_path)
Hi, I would like to report this little issue, when moving the emulato's folder to another path, this error occurs:
I get that it can be solved by removing the registry key, but it can be solved by checking first if the config path exists, if not, it falls back to the default path: