Skip to content

Commit

Permalink
FF7: Use direct/kernel for the kernel chunks as a path
Browse files Browse the repository at this point in the history
  • Loading branch information
julianxhokaxhiu committed Jan 26, 2023
1 parent 73cd378 commit 0c206d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ff7/kernel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ void ff7_load_kernel2_wrapper(char *filename)

for (int n = 0; n < FF7_KERNEL_NUM_SECTIONS; n++)
{
_snprintf(chunk_file, sizeof(chunk_file), "%s/%s/kernel.bin.chunk.%i", basedir, direct_mode_path.c_str(), n+1);
_snprintf(chunk_file, sizeof(chunk_file), "%s/%s/kernel/kernel.bin.chunk.%i", basedir, direct_mode_path.c_str(), n+1);

if ((fd = fopen(chunk_file, "rb")) != NULL)
{
Expand Down

0 comments on commit 0c206d7

Please sign in to comment.