Open chrylis opened 3 weeks ago
Actually it was already fixed.
https://github.com/pinterf/TIVTC/blob/master/src/common/fixedfonts.cpp#L15
The allocation failure was fixed as well, check issue #31.
Refresh your repo or let's figure out why you see an older copy of the source.
I think this is a result of a newer C++ version being used by default. Compilation fails with
Adding
#include <cstdint>
tofixedfonts.cpp
resolves the problem.(It apparently results in a
malloc failure (cArray)
at runtime, but it compiles. Possibly relevant.)