Add files via upload

This commit is contained in:
0TheSpy 2022-11-19 04:16:00 +03:00 committed by GitHub
parent 7de4aad737
commit 4a1604d273
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 5 deletions

View File

@ -16,10 +16,6 @@
//#define OLDSTYLE
//---- Define assertion handler. Defaults to calling assert().
// If your macro uses multiple statements, make sure is enclosed in a 'do { .. } while (0)' block so it can be used as a single statement.
//#define IM_ASSERT(_EXPR) MyAssert(_EXPR)

View File

@ -13,7 +13,7 @@
#ifdef OLDSTYLE
const ImU32 colWhite = 0xFFC1C1C1; const ImU32 colBlack = 0xFF585858; const ImU32 colWhiteText = 0xFFD9D9D9;
#else
const ImU32 colWhite = 0x99C1C1C1; const ImU32 colBlack = 0x99585858; const ImU32 colWhiteText = 0x99D9D9D9;
const ImU32 colWhite = 0xB2C1C1C1; const ImU32 colBlack = 0xB2585858; const ImU32 colWhiteText = 0xB2D9D9D9;
#endif
#include <ctype.h>