We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30301d0 commit 6b56b66Copy full SHA for 6b56b66
ttyd-tools/rel/source/draw.cpp
@@ -62,13 +62,13 @@ bool disableDPadOptionsDisplay(uint16_t unkVar)
62
63
bool fontDrawMessageMtxHandleCommand(const char *command, const char *commandValueString)
64
{
65
- if (strcmp(command, "col") == 0)
+ if (compareStrings(command, "col"))
66
67
uint32_t Color;
68
sscanf(commandValueString, "%" PRIx32, &Color);
69
ttyd::fontmgr::FontDrawColor(reinterpret_cast<uint8_t *>(&Color));
70
}
71
- else if (strcmp(command, "/col") == 0)
+ else if (compareStrings(command, "/col"))
72
73
ttyd::fontmgr::FontDrawColorIDX(0);
74
0 commit comments