From b9a740945752b2aa70051b3e62ba2c790d5b9ca4 Mon Sep 17 00:00:00 2001 From: Michael Fabian 'Xaymar' Dirks Date: Fri, 18 Jan 2019 17:05:31 +0100 Subject: [PATCH] config: Formatting --- config/config.hpp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/config/config.hpp b/config/config.hpp index d5af680..e009b1a 100644 --- a/config/config.hpp +++ b/config/config.hpp @@ -2,27 +2,27 @@ #ifndef CONFIG_H #define CONFIG_H -#define BASE_VER 1108 +#define BASE_VER 1108 #define PRO -#ifdef PRO -#define PRO_F 0x010000 +#ifdef PRO +#define PRO_F 0x010000 #else -#define PRO_F 0 +#define PRO_F 0 #endif -#ifdef DEMO -#define DEMO_F 0x080000 +#ifdef DEMO +#define DEMO_F 0x080000 #else -#define DEMO_F 0 +#define DEMO_F 0 #endif -#ifdef EDU -#define EDU_F 0x200000 +#ifdef EDU +#define EDU_F 0x200000 #else -#define EDU_F 0 +#define EDU_F 0 #endif -#define VERSION (BASE_VER|PRO_F|DEMO_F|EDU_F) +#define VERSION (BASE_VER | PRO_F | DEMO_F | EDU_F) #endif