mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
compile fix
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2112 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -92,11 +92,7 @@ struct TRectangle
|
||||
void DebugLog(const char* _fmt, ...); // This one goes to the main program
|
||||
void HandleGLError();
|
||||
|
||||
#ifdef LOGGING
|
||||
#define LOG_VTX() LOG("vtx: %f %f %f, ", ((float*)VertexManager::s_pCurBufferPointer)[0], ((float*)VertexManager::s_pCurBufferPointer)[1], ((float*)VertexManager::s_pCurBufferPointer)[2]);
|
||||
#else
|
||||
#define LOG_VTX()
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef _WIN32
|
||||
#define ERROR_LOG(...) LOG(VIDEO, __VA_ARGS__)
|
||||
@ -111,5 +107,10 @@ void HandleGLError();
|
||||
#define DEBUG_LOG(...) LOG(VIDEO, ##__VA_ARGS__)
|
||||
#endif
|
||||
|
||||
#ifdef LOGGING
|
||||
#define LOG_VTX() PRIM_LOG("vtx: %f %f %f, ", ((float*)VertexManager::s_pCurBufferPointer)[0], ((float*)VertexManager::s_pCurBufferPointer)[1], ((float*)VertexManager::s_pCurBufferPointer)[2]);
|
||||
#else
|
||||
#define LOG_VTX()
|
||||
#endif
|
||||
|
||||
#endif // _VIDEOCOMMON_H
|
||||
|
Reference in New Issue
Block a user