Renamed XX-bits -> XX-bit in comments to match what the world appears to be using.

This commit is contained in:
omar
2019-11-20 11:58:25 +01:00
parent a899c1e570
commit ca63349eb4
22 changed files with 41 additions and 41 deletions

View File

@ -3,7 +3,7 @@
// The data is first compressed with stb_compress() to reduce source code size,
// then encoded in Base85 to fit in a string so we can fit roughly 4 bytes of compressed data into 5 bytes of source code (suggested by @mmalex)
// (If we used 32-bits constants it would require take 11 bytes of source code to encode 4 bytes, and be endianness dependent)
// (If we used 32-bit constants it would require take 11 bytes of source code to encode 4 bytes, and be endianness dependent)
// Note that even with compression, the output array is likely to be bigger than the binary file..
// Load compressed TTF fonts with ImGui::GetIO().Fonts->AddFontFromMemoryCompressedTTF()