This commit is contained in:
j3d1 2016-09-27 20:56:57 +02:00
parent 8ba4ca3ffb
commit c96637c6e9
2 changed files with 2 additions and 1 deletions

View file

@ -6,6 +6,7 @@
#include "game_window.h" #include "game_window.h"
#include "options.hpp" #include "options.hpp"
uint64_t optionsFlags;
using namespace std; using namespace std;

View file

@ -9,7 +9,7 @@
#define SET_FLAG(x,y) optionsFlags&=(~((1)<<x));optionsFlags|=((y&1)<<x) #define SET_FLAG(x,y) optionsFlags&=(~((1)<<x));optionsFlags|=((y&1)<<x)
#define ISSET_FLAG(x) (optionsFlags&((1)<<x)) #define ISSET_FLAG(x) (optionsFlags&((1)<<x))
uint64_t optionsFlags; extern uint64_t optionsFlags;
/* /*
* usage: * usage: