Lameguy64 / mkpsxiso

ISO disc image maker written specifically for PlayStation homebrew development
GNU General Public License v2.0
214 stars 33 forks source link

Bug when calculating the folder size #23

Open 64ghost opened 2 years ago

64ghost commented 2 years ago

After repack image FFT folder MAP size increased by 1 sector. The rest of the data shifted by 1 sector. image

Maybe incorrect calculation of sums of lengths of file names in a folder In file iso.cpp in str(36) change length += length % 2 ---> length += (length + 1) % 2