Bugfixed map file reader for mask case, added test

This commit is contained in:
Matthias Koefferlein
2020-08-02 00:56:55 +02:00
parent 440b2b122b
commit 404799bdfd
5 changed files with 44 additions and 48 deletions
+1 -1
View File
@@ -193,7 +193,7 @@ const char *ANSI_GREEN = "\033[32m";
const char *ANSI_RESET = "\033[0m";
TestConsole::TestConsole (FILE *file)
: m_file (file), m_col (0), m_max_col (250), m_columns (50), m_rows (0), m_file_is_tty (false)
: m_file (file), m_col (0), m_max_col (400), m_columns (50), m_rows (0), m_file_is_tty (false)
{
ms_instance = this;