Page[] mappings in mapper code, X.DB update for games with no controls
[fceu.git] / dprintf.h
1 #if 0
2 #include <stdio.h>
3
4 extern uint32 timestamp;
5 extern uint32 framecount;
6 extern int scanline;
7
8 #undef dprintf
9 #define dprintf(f,...) printf("%05u:%05u:%03i: " f "\n",timestamp,framecount,scanline,##__VA_ARGS__)
10
11 #else
12
13 #define dprintf(x...)
14
15 #endif
16