fixes
This commit is contained in:
parent
8ba4ca3ffb
commit
c96637c6e9
2 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||||
|
|
||||||
|
|
|
@ -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:
|
||||||
|
|
Loading…
Reference in a new issue