Variable name inconsistancies between ports are irritating when its otherwise the same code... :(

git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@551 a6443dda-0b58-4228-96e9-037be469359c
This commit is contained in:
arcum42 2009-01-04 15:17:41 +00:00 committed by Gregory Hainaut
parent 9f7f6a7ece
commit fbffd5228f
1 changed files with 3 additions and 3 deletions

View File

@ -586,14 +586,14 @@ void SysPrintf(const char *fmt, ...)
void SysMessage(const char *fmt, ...)
{
va_list list;
char tmp[512];
char msg[512];
va_start(list,fmt);
vsprintf_s(msg,fmt,list);
tmp[511] = '\0';
msg[511] = '\0';
va_end(list);
Console::Alert(tmp);
Console::Alert(msg);
}
void SysUpdate() {