Found my old LEL code and got the shell working, so tomorrow I'll try to make it layout some gui element.

This commit is contained in:
Zed A. Shaw 2025-02-14 02:13:08 -05:00
parent 8a6b38c1a4
commit bfd2718cc9
8 changed files with 485 additions and 3 deletions

View file

@ -114,7 +114,7 @@ ANSIParser::ANSIParser(sf::Color default_fg, sf::Color default_bg) :
}
bool ANSIParser::parse(std::wstring_view codes, ColorCB color_cb, WriteCB write_cb) {
const wchar_t *start = NULL;
const wchar_t *start = nullptr;
int cs = 0;
unsigned int value = 0;
const wchar_t *p = codes.data();