Wrote windowsSaneify to make windows interpret ansi color codes.

This commit is contained in:
2024-07-02 09:45:46 -04:00
parent f26ca1f077
commit 2942c1c9c1
3 changed files with 34 additions and 0 deletions

View File

@@ -201,4 +201,8 @@ namespace mcolor
std::string toEscapeCode(rgbColor c, bool bg=false);
std::string toEscapeCode(ansiColors::Colors c);
#ifdef WIN32
void windowsSaneify();
#endif
}