Add Note for Rosetta (#109)
* Add get_cpu_notes Check cpu for Virtual Apple and Note to disable Rosetta * Update ryujinx_log_analyser.py fix misspelling * Apply formatting
This commit is contained in:
parent
7b5b9fc104
commit
76fe1dbbd4
1 changed files with 5 additions and 0 deletions
|
@ -443,6 +443,10 @@ class LogAnalyser:
|
||||||
"**⚠️ AMD GPU users should consider using Vulkan graphics backend**"
|
"**⚠️ AMD GPU users should consider using Vulkan graphics backend**"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def __get_cpu_notes(self):
|
||||||
|
if "VirtualApple" in self._hardware_info["cpu"]:
|
||||||
|
self._notes.add("🔴 **Rosetta should be disabled**")
|
||||||
|
|
||||||
def __get_log_notes(self):
|
def __get_log_notes(self):
|
||||||
default_logs = ["Info", "Warning", "Error", "Guest"]
|
default_logs = ["Info", "Warning", "Error", "Guest"]
|
||||||
user_logs = []
|
user_logs = []
|
||||||
|
@ -572,6 +576,7 @@ class LogAnalyser:
|
||||||
|
|
||||||
self.__get_controller_notes()
|
self.__get_controller_notes()
|
||||||
self.__get_os_notes()
|
self.__get_os_notes()
|
||||||
|
self.__get_cpu_notes()
|
||||||
|
|
||||||
if (
|
if (
|
||||||
self._emu_info["ryu_firmware"] == "Unknown"
|
self._emu_info["ryu_firmware"] == "Unknown"
|
||||||
|
|
Loading…
Reference in a new issue