mouse2joystick_custom_CEMU icon indicating copy to clipboard operation
mouse2joystick_custom_CEMU copied to clipboard

#Include Tweaks

Open Gorgrak opened this issue 2 years ago • 0 comments

I was trying to run this from Task Scheduler but it was behaving weird. AHK documentation says SetWorkingDir does NOT affect #Include commands because # commands are run before any other lines of code no matter where they're located in the script. My tweaks fix that:

; change the #Include section to the following: #Include %A_ScriptDir%\CvJI ; this changes the working dir for all future include ;#Include CvJoyInterface.ahk ; Credit to evilC. #Include CvGenInterface.ahk ; A Modifed Interface that I (CemuUser8) added the vXBox device and functions to. #Include MouseDelta.ahk ; Alternate way to see mouse movement #Include SelfDeletingTimer.ahk

Gorgrak avatar Mar 03 '22 06:03 Gorgrak