You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: checks/windows.py
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -347,6 +347,20 @@ def checkAdmin(lines):
347
347
"OBS is not running as Administrator. This can lead to OBS not being able to Game Capture certain games. If you are not running into issues, you can ignore this."]
348
348
349
349
350
+
gc_admin_re=re.compile(r"could not open process: (?P<executable>.*)$")
351
+
352
+
353
+
defcheckGCAdmin(lines):
354
+
error_lines=search("could not open process:", lines)
355
+
gc_error_lines=search("game-capture", error_lines) # Makes sure the error comes from a game capture, in case.
"The following games will require OBS to be run as administrator to be captured with game capture, though more might also be needed :<br>\n<ul>\n<li>"
360
+
+"</li>\n<li>".join(exe_list)
361
+
+"""</li>\n</ul> <br> For more info and additional troubleshooting, see the <a href="https://obsproject.com/kb/game-capture-troubleshooting">Game Capture Troubleshooting</a> guide."""]
0 commit comments