mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
9f7f6a7ece
commit
fbffd5228f
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue