Skip to content

Commit

Permalink
Fix possible future bug in x64 WinXP systems
Browse files Browse the repository at this point in the history
  • Loading branch information
joedf committed Mar 1, 2016
1 parent 055f26d commit d690b93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LibCon-minXP.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
NULL := ""
SizeConDebug := 0
SizeConErrorLevel := 0
SizeConDll := (A_Is64bitOS) ? "SizeCon_x64.dll" : "SizeCon.dll"
SizeConDll := (A_PtrSize==8) ? "SizeCon_x64.dll" : "SizeCon.dll"

loadSizeCon() {

Expand Down

0 comments on commit d690b93

Please sign in to comment.