mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-30 01:48:15 +03:00
Fix indentation style of #defines in Vlogging.c
This makes it so the hash is always in the first column while the rest of the line follows normal indentation rules.
This commit is contained in:
@@ -3,12 +3,12 @@
|
||||
#include <stdio.h>
|
||||
|
||||
#if defined(__unix__) || defined(__APPLE__)
|
||||
#include <unistd.h>
|
||||
#define STDOUT_IS_TTY isatty(STDOUT_FILENO)
|
||||
#define STDERR_IS_TTY isatty(STDERR_FILENO)
|
||||
# include <unistd.h>
|
||||
# define STDOUT_IS_TTY isatty(STDOUT_FILENO)
|
||||
# define STDERR_IS_TTY isatty(STDERR_FILENO)
|
||||
#else
|
||||
#define STDOUT_IS_TTY 0
|
||||
#define STDERR_IS_TTY 0
|
||||
# define STDOUT_IS_TTY 0
|
||||
# define STDERR_IS_TTY 0
|
||||
#endif
|
||||
|
||||
#define COLOR(EXPR) color_enabled ? EXPR : ""
|
||||
|
||||
Reference in New Issue
Block a user