memwatch space padding (erasing)

This commit is contained in:
zeromus 2008-07-31 17:31:35 +00:00
parent 630a18118d
commit fecd7c0ba4
1 changed files with 5 additions and 0 deletions

View File

@ -273,6 +273,11 @@ void UpdateMemWatch()
text = U8ToDecStr(GetMem(mwrec.addr));
}
}
int len = strlen(text);
for(int i=len;i<5;i++)
text[i] = ' ';
text[5] = 0;
}
else
{