-> Implement Debug Colors

- Debug Colors
- Debug Menus
- Formatting
This commit is contained in:
2024-02-21 20:17:12 +01:00
parent 968c2576b9
commit 0092edf54f
4 changed files with 33 additions and 21 deletions

View File

@@ -7,9 +7,9 @@
// Use an Npi simplifier cause I am lazy
#define reca_cc(x) reinterpret_cast<const char*>(x)
#define reca_c(x) reinterpret_cast<char*>(x)
#define pak32(q, w, e, r) \
((((q) & 0xff) << 0) | (((w) & 0xff) << 8) | (((e) & 0xff) << 16) | \
(((r) & 0xff) << 24))
#define pak32(q, w, e, r) \
((((q)&0xff) << 0) | (((w)&0xff) << 8) | (((e)&0xff) << 16) | \
(((r)&0xff) << 24))
// Stupid RLE Algorithm
void npi_compress(std::vector<unsigned char>& ret,