Skip to content

Commit

Permalink
disable logging
Browse files Browse the repository at this point in the history
  • Loading branch information
steveschnepp committed Nov 11, 2023
1 parent 6da865e commit ff7cb99
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ddraw.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@

#define d3d_perf
#define DEBUG_STDOUT 0
#define DEBUG 0

static void lprintf(const char* format, ...) {
#if DEBUG
va_list args;
char buf[2048];

Expand All @@ -38,6 +40,7 @@ static void lprintf(const char* format, ...) {
#endif

OutputDebugString(buf);
#endif
}

#define GET_TEXCOUNT_FROM_FVF(d3dvtVertexType) \
Expand Down

0 comments on commit ff7cb99

Please sign in to comment.