MEGA65 / mega65-fdisk

FDISK+Format Utility for MEGA65
GNU General Public License v3.0
12 stars 8 forks source link

Native fixes #25

Closed zeldin closed 2 months ago

zeldin commented 2 months ago

Two small fixes to the native built version:

  1. Use fprintf instead of format_decimal to print the number of embedded files in a core. clang was complaining about the narrowing cast of a pointer (even though the argument is just discarded, so not really unsafe), and anyway the printout looks much nicer this way. 😸
  2. Check that the fopen of FLASHFILE really succeeded, so that we don't get a mysterious NULL dereference in fseek.