MycroftOS: Changes to mycroft-splash

This commit is contained in:
Peter Steenbergen 2020-04-20 14:17:25 +02:00
parent 22c8c79444
commit 38b331f5f2
3 changed files with 5 additions and 5 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

After

Width:  |  Height:  |  Size: 27 KiB

View File

@ -12,15 +12,15 @@
#define _HAVE_PSPLASH_COLORS_H
/* This is the overall background color */
#define PSPLASH_BACKGROUND_COLOR 0x22,0xa7,0xf0
#define PSPLASH_BACKGROUND_COLOR 0x00,0x00,0x00
/* This is the color of any text output */
#define PSPLASH_TEXT_COLOR 0xff,0xff,0xff
/* This is the color of the progress bar indicator */
#define PSPLASH_BAR_COLOR 0x2c,0x3e,0x50
#define PSPLASH_BAR_COLOR 0xff,0xff,0xff
/* This is the color of the progress bar background */
#define PSPLASH_BAR_BACKGROUND_COLOR 0x22,0xa7,0xf0
#define PSPLASH_BAR_BACKGROUND_COLOR 0x00,0x00,0x00
#endif

View File

@ -13,12 +13,12 @@
/* Text to output on program start; if undefined, output nothing */
#ifndef PSPLASH_DISABLE_STARTUP_MSG
#define PSPLASH_STARTUP_MSG "Booting MycroftOS"
#define PSPLASH_STARTUP_MSG ""
#endif
/* Bool indicating if the image is fullscreen, as opposed to split screen */
#ifndef PSPLASH_IMG_FULLSCREEN
#define PSPLASH_IMG_FULLSCREEN 0
#define PSPLASH_IMG_FULLSCREEN 1
#endif
/* Position of the image split from top edge, numerator of fraction */