mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-17 05:44:08 -07:00
Avoid cases of filenames Update years in terms and other legal(ish) documents Don't update years in license headers, since change is not meaningful Will add linter rule in seperate commit Happy recompiling everyone! Original Patch By: Nescio Comment By: Gallaecio Differential Revision: D2620 This was SVN commit r27786.
5 lines
276 B
Text
5 lines
276 B
Text
' Simple VBScript to open the 0 A.D. logs folder
|
||
' the path varies on different versions of Windows
|
||
Set objShell = CreateObject("Shell.Application")
|
||
' 0x1C is equivalent to the ssfLOCALAPPDATA constant in VB
|
||
objShell.Explore objShell.Namespace(&H1C&).Self.Path & "\0ad\logs"
|