FF8: Enable support for the override_path option #705
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Enable override_path option for FF8
Motivation
override_path
option in FF7 allows modders to put files and LGP archives in another directory than the game data.It is quite useful when a modder want to edits LGP archives without change original files from FF7 installation.
The FF8 version is basically the same thing, but simpler: any file that is opened by the game (for reading or writing) is firstly checked in the
override_path
. For example for.\ff8input.cfg
, FFNx checks for the existence of.\override\ff8input.cfg
, and for.\Data\field.fs
, FFNx checks for the existence of.\override\Data\field.fs
, and so on.The Steam version of the game try to look to some files like saves in Documents/Square Enix (the user directory), for the lack of simplicity and uniformity between the 2000 and the Steam version, the redirection attempt is made with the 2000 path.
ACKs