Some create package dir in travis
This commit is contained in:
parent
33324b6802
commit
853d390427
|
@ -50,6 +50,7 @@ addons:
|
||||||
branch_pattern: coverity_scan
|
branch_pattern: coverity_scan
|
||||||
|
|
||||||
before_deploy:
|
before_deploy:
|
||||||
|
- mkdir package
|
||||||
- cmake package
|
- cmake package
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
|
|
|
@ -77,9 +77,9 @@ static SDL_Rect rightGuiViewport;
|
||||||
static SDL_Rect menuViewport;
|
static SDL_Rect menuViewport;
|
||||||
static Turn currentTurn = PLAYER;
|
static Turn currentTurn = PLAYER;
|
||||||
|
|
||||||
static SDL_Color C_MENU_DEFAULT = { 255, 255, 0 };
|
static SDL_Color C_MENU_DEFAULT = { 255, 255, 0, 255 };
|
||||||
static SDL_Color C_MENU_OUTLINE_DEFAULT = { 0, 0, 0, };
|
static SDL_Color C_MENU_OUTLINE_DEFAULT = { 0, 0, 0, 255 };
|
||||||
static SDL_Color C_MENU_HOVER = { 255, 0, 0 };
|
static SDL_Color C_MENU_HOVER = { 255, 0, 0, 255 };
|
||||||
|
|
||||||
struct MENU_ITEM {
|
struct MENU_ITEM {
|
||||||
char label[20];
|
char label[20];
|
||||||
|
|
Loading…
Reference in New Issue