Skip to content

Commit

Permalink
Fix broken .rpx files from disc copies
Browse files Browse the repository at this point in the history
Apparently this is very important. Thankfully I remembered seeing it in this commit: dimok789/ftpiiu@3172ac7 and it seems to fix it.
  • Loading branch information
Crementif committed Aug 20, 2020
1 parent 71abbb8 commit b8d13be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/dumping.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
// Dumping Functions

#define BUFFER_SIZE_ALIGNMENT 64
#define BUFFER_SIZE (31250 * BUFFER_SIZE_ALIGNMENT)
#define BUFFER_SIZE (1024 * BUFFER_SIZE_ALIGNMENT)

bool copyFile(const char* filename, std::string srcPath, std::string destPath) {
// Check if file is an actual file first
Expand Down

0 comments on commit b8d13be

Please sign in to comment.