mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-04 18:29:41 +01:00
c17ea40866
So there were actually only two instances of C99-style end-of-line comments in C files - and technically one of them was just a C file including MakeAndPlay.h.
10 lines
253 B
C
10 lines
253 B
C
#ifndef MAKEANDPLAY_H
|
|
#define MAKEANDPLAY_H
|
|
|
|
/* This is a cheap way to deal with the MAKEANDPLAY def when recompiling.
|
|
* It's heaps faster than rebuilding everything, so here we are.
|
|
* -flibit
|
|
*/
|
|
/* #define MAKEANDPLAY */
|
|
|
|
#endif /* MAKEANDPLAY_H */
|