Allow symlinks by default

PhysicsFS supports disabling symlinks, but this is intended for
environments where scripts are sandboxed. Since mkxp-z runs Ruby code
unsandboxed, this doesn't yield any practical security benefit for us.
This commit is contained in:
Splendide Imaginarius 2024-07-28 21:52:50 +00:00
parent 3376730416
commit 084e80b38c
2 changed files with 3 additions and 3 deletions

View file

@ -325,9 +325,9 @@
// Allow symlinks for game assets to be followed
// (default: disabled)
// (default: enabled)
//
// "allowSymlinks": false,
// "allowSymlinks": true,
// Organisation / company and application / game

View file

@ -173,7 +173,7 @@ void Config::read(int argc, char *argv[]) {
{"anyAltToggleFS", false},
{"enableReset", true},
{"enableSettings", true},
{"allowSymlinks", false},
{"allowSymlinks", true},
{"dataPathOrg", ""},
{"dataPathApp", ""},
{"iconPath", ""},