Some create package dir in travis

This commit is contained in:
Linus Probert 2018-05-15 14:21:54 +02:00
parent 33324b6802
commit 853d390427
2 changed files with 4 additions and 3 deletions

View File

@ -50,6 +50,7 @@ addons:
branch_pattern: coverity_scan
before_deploy:
- mkdir package
- cmake package
deploy:

View File

@ -77,9 +77,9 @@ static SDL_Rect rightGuiViewport;
static SDL_Rect menuViewport;
static Turn currentTurn = PLAYER;
static SDL_Color C_MENU_DEFAULT = { 255, 255, 0 };
static SDL_Color C_MENU_OUTLINE_DEFAULT = { 0, 0, 0, };
static SDL_Color C_MENU_HOVER = { 255, 0, 0 };
static SDL_Color C_MENU_DEFAULT = { 255, 255, 0, 255 };
static SDL_Color C_MENU_OUTLINE_DEFAULT = { 0, 0, 0, 255 };
static SDL_Color C_MENU_HOVER = { 255, 0, 0, 255 };
struct MENU_ITEM {
char label[20];