VertexLoader: Remove the LOADERDECL define.

These functions aren't called from jitted code anymore so it isn't necessary.
This commit is contained in:
Lioncash
2015-06-19 15:18:16 -04:00
parent c19903e0fe
commit 619e333dcc
7 changed files with 51 additions and 56 deletions

View File

@ -18,14 +18,9 @@
#include "VideoCommon/VertexLoaderBase.h"
#include "VideoCommon/VertexLoaderUtils.h"
#ifdef WIN32
#define LOADERDECL __cdecl
#else
#define LOADERDECL
#endif
class VertexLoader;
typedef void (LOADERDECL *TPipelineFunction)(VertexLoader* loader);
typedef void (*TPipelineFunction)(VertexLoader* loader);
class VertexLoader : public VertexLoaderBase
{