MSVC didn't like my cdecl placement :(

This commit is contained in:
Steve Dudenhoeffer
2007-03-10 18:16:21 +00:00
parent c9b19c76a5
commit 7124f8bd2c
24 changed files with 106 additions and 50 deletions

View File

@@ -360,7 +360,7 @@ void ThisVTable::Execute(void *pthis, void *other)
}
};
HAM_CDECL void ThisVTable::EntryPoint(int id,void *pthis,void *other)
void HAM_CDECL ThisVTable::EntryPoint(int id,void *pthis,void *other)
{
VTMan.ThisEntries[id]->Execute(pthis,other);
}