From 853d3904273918d4bac59f496c04bd50f29413ba Mon Sep 17 00:00:00 2001 From: Linus Probert Date: Tue, 15 May 2018 14:21:54 +0200 Subject: [PATCH] Some create package dir in travis --- .travis.yml | 1 + src/main.c | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index b69e06b..9f36a78 100644 --- a/.travis.yml +++ b/.travis.yml @@ -50,6 +50,7 @@ addons: branch_pattern: coverity_scan before_deploy: + - mkdir package - cmake package deploy: diff --git a/src/main.c b/src/main.c index 7fb21ed..797a91c 100644 --- a/src/main.c +++ b/src/main.c @@ -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];