From c87d06e4e38789a2d03416196588402f06f13e55 Mon Sep 17 00:00:00 2001 From: Ven0m0 <82972344+Ven0m0@users.noreply.github.com> Date: Sun, 1 Mar 2026 06:53:07 +0000 Subject: [PATCH] perf: fix SetBatchLines not applying by updating incorrect include paths The SetBatchLines -1 performance optimization in Citra-base.ahk was not propagating to dependent scripts because Citra-per-game.ahk and Default.ahk were importing a non-existent file name (CitraConfigBase.ahk) instead of the actual file (Citra-base.ahk). Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com> --- Other/Citra_per_game_config/Citra-per-game.ahk | 2 +- Other/Citra_per_game_config/Default.ahk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Other/Citra_per_game_config/Citra-per-game.ahk b/Other/Citra_per_game_config/Citra-per-game.ahk index 5ff2f8f..bacd2e7 100644 --- a/Other/Citra_per_game_config/Citra-per-game.ahk +++ b/Other/Citra_per_game_config/Citra-per-game.ahk @@ -1,4 +1,4 @@ -#include %A_ScriptDir%\CitraConfigBase.ahk +#include %A_ScriptDir%\Citra-base.ahk ; Unified per-game Citra config applicator ; Usage: Run this script with first arg = game key (see list in ShowHelp()). diff --git a/Other/Citra_per_game_config/Default.ahk b/Other/Citra_per_game_config/Default.ahk index 89e430d..b9f65f6 100644 --- a/Other/Citra_per_game_config/Default.ahk +++ b/Other/Citra_per_game_config/Default.ahk @@ -1,4 +1,4 @@ -#include %A_ScriptDir%\CitraConfigBase.ahk +#include %A_ScriptDir%\Citra-base.ahk ; Internal Resolution to 10x TF_RegExReplace(CitraConfigFile, "resolution_factor=([2-9]|10|1)", "resolution_factor=10")