mirror of
https://github.com/clangen/musikcube.git
synced 2025-01-01 09:01:15 +00:00
Ninja fix for RGB color mode.
This commit is contained in:
parent
3c4e1002d1
commit
3564064e71
@ -78,12 +78,6 @@ using namespace musik::core::db::local;
|
||||
using namespace musik::box;
|
||||
using namespace cursespp;
|
||||
|
||||
#ifdef WIN32
|
||||
#define DEFAULT_COLOR_MODE Colors::RGB
|
||||
#else
|
||||
#define DEFAULT_COLOR_MODE Colors::Palette
|
||||
#endif
|
||||
|
||||
#define MIN_WIDTH 48
|
||||
#define MIN_HEIGHT 12
|
||||
|
||||
@ -144,7 +138,7 @@ int main(int argc, char* argv[])
|
||||
musik::core::prefs::components::Settings);
|
||||
|
||||
/* set color mode (basic, palette, rgb) */
|
||||
Colors::Mode colorMode = DEFAULT_COLOR_MODE;
|
||||
Colors::Mode colorMode = Colors::RGB;
|
||||
|
||||
if (prefs->GetBool(musik::box::prefs::keys::DisableCustomColors.c_str(), false)) {
|
||||
colorMode = Colors::Basic;
|
||||
|
Loading…
Reference in New Issue
Block a user