From 7e4a71cd47d8ec80fea0eab525e5dbcc9e740d86 Mon Sep 17 00:00:00 2001 From: J-Doiron <139803019+J-Doiron@users.noreply.github.com> Date: Fri, 14 Nov 2025 16:02:44 -0800 Subject: [PATCH] Updating rocket league to look for the audio tab instead of the video tab to help with 720p testing. --- rocket_league/rocket_league.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rocket_league/rocket_league.py b/rocket_league/rocket_league.py index 96532e7..0dc3a0a 100644 --- a/rocket_league/rocket_league.py +++ b/rocket_league/rocket_league.py @@ -212,8 +212,8 @@ def run_benchmark(): gamepad.single_button_press(button=vg.DS4_BUTTONS.DS4_BUTTON_CROSS) time.sleep(0.4) - if kerasService.look_for_word(word="video", attempts=10, interval=1) is None: - logging.info("Couldn't find the video tab. Did the settings menu open?") + if kerasService.look_for_word(word="audio", attempts=10, interval=1) is None: + logging.info("Couldn't find the audio tab. Did the settings menu open?") sys.exit(1) time.sleep(1)