aiekick / MagicaVoxel_File_Writer

MagicaVoxel File Writer dependency free cpp class
MIT License
35 stars 10 forks source link

Fix VoxWriter incorrect errno usage on Unix #5

Closed eutro closed 2 years ago

eutro commented 2 years ago

A non-null return from fopen already implies no error, while errno may not have been reset and could still be non-zero.

This was causing a write to fail when there were no actual IO errors.

aiekick commented 2 years ago

Thansk for thz fix