mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-10 15:40:16 +00:00
fix a bug from last commit, thanks lpfaint :p
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3995 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
6e61c32495
commit
5be88b9202
@ -77,7 +77,7 @@ inline void CON_BlankRow(const int y)
|
||||
CON_GetMetrics(&columns, &rows);
|
||||
char* blank = new char[columns];
|
||||
std::fill(blank, blank + columns, ' ');
|
||||
blank[columns] = '\0';
|
||||
blank[columns-1] = '\0';
|
||||
CON_Printf(0, y, "%s", blank);
|
||||
delete blank;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user