mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-02-02 23:42:21 +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>
|
#include <stdio.h>
|
||||||
|
|
||||||
#if defined(__unix__) || defined(__APPLE__)
|
#if defined(__unix__) || defined(__APPLE__)
|
||||||
#include <unistd.h>
|
# include <unistd.h>
|
||||||
#define STDOUT_IS_TTY isatty(STDOUT_FILENO)
|
# define STDOUT_IS_TTY isatty(STDOUT_FILENO)
|
||||||
#define STDERR_IS_TTY isatty(STDERR_FILENO)
|
# define STDERR_IS_TTY isatty(STDERR_FILENO)
|
||||||
#else
|
#else
|
||||||
#define STDOUT_IS_TTY 0
|
# define STDOUT_IS_TTY 0
|
||||||
#define STDERR_IS_TTY 0
|
# define STDERR_IS_TTY 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define COLOR(EXPR) color_enabled ? EXPR : ""
|
#define COLOR(EXPR) color_enabled ? EXPR : ""
|
||||||
|
|||||||
Reference in New Issue
Block a user