Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/hook/prohook.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ You need two main folders:
* `game` folder with the following contents
* All data zip files (e.g. `data0.zip`, `data1.zip`, ..., `encore.zip`)
* An empty file `FX` (if you run this on a FX or other cabinet with a widescreen monitor)
* `save ` folder. Contents are generated automatically if empty.
* `save` folder and `MachineProfile` inside of it . You must create these folders manually, rest of the files will populate themselves. **Without doing so the game will not save settings or high scores between boots.**

## USB thumb drive/profile support
Without any patches, the game's way of handling USB thumb drives is incompatible to the kernels of the last years.
Expand Down
2 changes: 1 addition & 1 deletion src/main/capnhook/hooklib/redir.c
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ static enum cnh_result _cnh_redir_fshook_rename(struct cnh_fshook_irp *irp)
_cnh_redir_init();

res_old = _cnh_redir_check(irp->rename_old);
res_new = _cnh_redir_check(irp->rename_old);
res_new = _cnh_redir_check(irp->rename_new);

if (res_old != NULL) {
irp->rename_old = res_old;
Expand Down