You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think this is a result of a newer C++ version being used by default. Compilation fails with
TIVTC-1.0.29/src/common/fixedfonts.cpp:32:24: error: ‘uint16_t’ was not declared in this scope
32 | constexpr std::array<uint16_t, CHARCOUNT * HEIGHT> fixedfont_bitmap = {
|
Adding #include <cstdint> to fixedfonts.cpp resolves the problem.
(It apparently results in a malloc failure (cArray) at runtime, but it compiles. Possibly relevant.)
The text was updated successfully, but these errors were encountered:
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.)The text was updated successfully, but these errors were encountered: