mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-04-21 21:52:04 +02:00
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:
parent
3376730416
commit
084e80b38c
2 changed files with 3 additions and 3 deletions
|
@ -325,9 +325,9 @@
|
||||||
|
|
||||||
|
|
||||||
// Allow symlinks for game assets to be followed
|
// Allow symlinks for game assets to be followed
|
||||||
// (default: disabled)
|
// (default: enabled)
|
||||||
//
|
//
|
||||||
// "allowSymlinks": false,
|
// "allowSymlinks": true,
|
||||||
|
|
||||||
|
|
||||||
// Organisation / company and application / game
|
// Organisation / company and application / game
|
||||||
|
|
|
@ -173,7 +173,7 @@ void Config::read(int argc, char *argv[]) {
|
||||||
{"anyAltToggleFS", false},
|
{"anyAltToggleFS", false},
|
||||||
{"enableReset", true},
|
{"enableReset", true},
|
||||||
{"enableSettings", true},
|
{"enableSettings", true},
|
||||||
{"allowSymlinks", false},
|
{"allowSymlinks", true},
|
||||||
{"dataPathOrg", ""},
|
{"dataPathOrg", ""},
|
||||||
{"dataPathApp", ""},
|
{"dataPathApp", ""},
|
||||||
{"iconPath", ""},
|
{"iconPath", ""},
|
||||||
|
|
Loading…
Add table
Reference in a new issue