-
Notifications
You must be signed in to change notification settings - Fork 1
⚡ Optimize Citra Mod Manager startup speed #24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -8,6 +8,7 @@ if (!InStr(A_AhkPath, "_UIA.exe")) { | |||
| #SingleInstance Force | ||||
| #Warn ; Enable warnings to assist with detecting common errors. | ||||
| #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | ||||
| SetBatchLines, -1 ; Run as fast as possible. | ||||
|
||||
| SetBatchLines, -1 ; Run as fast as possible. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This directive creates inconsistency with other legacy v1 scripts in the repository. The sibling script
Citra_3DS_Manager.ahk(276 lines with similar file loops and GUI construction) does not useSetBatchLines. Similarly, all other v1 legacy scripts inOther/Downloader/andOther/Citra_per_game_config/omit this directive. For consistency across the legacy v1 codebase, consider removing this directive unless all legacy scripts adopt it.