mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-05 02:39:41 +01:00
Use multiline comments in C files
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.
This commit is contained in:
parent
4c199efbac
commit
c17ea40866
2 changed files with 2 additions and 2 deletions
|
@ -5,6 +5,6 @@
|
|||
* It's heaps faster than rebuilding everything, so here we are.
|
||||
* -flibit
|
||||
*/
|
||||
// #define MAKEANDPLAY
|
||||
/* #define MAKEANDPLAY */
|
||||
|
||||
#endif /* MAKEANDPLAY_H */
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include <SDL_stdinc.h>
|
||||
|
||||
// Handle third-party dependencies' needs here
|
||||
/* Handle third-party dependencies' needs here */
|
||||
|
||||
void* lodepng_malloc(size_t size)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue