- removed STACK_ARGS.
The only reason this even existed was that ZDoom's original VC projects used __fastcall. The CMake generated project do not, they stick to __cdecl. Since no performance gain can be seen by using __fastcall the best course of action is to just remove all traces of it from the source and forget that it ever existed.
This commit is contained in:
parent
76f00131ff
commit
db86385cf6
58 changed files with 232 additions and 211 deletions
|
|
@ -581,7 +581,7 @@ int VPrintf (int printlevel, const char *format, va_list parms)
|
|||
return PrintString (printlevel, outline.GetChars());
|
||||
}
|
||||
|
||||
int STACK_ARGS Printf (int printlevel, const char *format, ...)
|
||||
int Printf (int printlevel, const char *format, ...)
|
||||
{
|
||||
va_list argptr;
|
||||
int count;
|
||||
|
|
@ -593,7 +593,7 @@ int STACK_ARGS Printf (int printlevel, const char *format, ...)
|
|||
return count;
|
||||
}
|
||||
|
||||
int STACK_ARGS Printf (const char *format, ...)
|
||||
int Printf (const char *format, ...)
|
||||
{
|
||||
va_list argptr;
|
||||
int count;
|
||||
|
|
@ -605,7 +605,7 @@ int STACK_ARGS Printf (const char *format, ...)
|
|||
return count;
|
||||
}
|
||||
|
||||
int STACK_ARGS DPrintf (const char *format, ...)
|
||||
int DPrintf (const char *format, ...)
|
||||
{
|
||||
va_list argptr;
|
||||
int count;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue