lcd4l: activate new Samsung SPF types

Origin commit data
------------------
Branch: ni/coolstream
Commit: 84db502010
Author: vanhofen <vanhofen@gmx.de>
Date: 2019-01-04 (Fri, 04 Jan 2019)

Origin message was:
------------------
- lcd4l: activate new Samsung SPF types

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2019-01-04 22:34:05 +01:00
parent babf0316af
commit d7a25c2106
2 changed files with 7 additions and 10 deletions

View File

@@ -739,16 +739,13 @@ void CLCD4l::ParseInfo(uint64_t parseID, bool newID, bool firstRun)
switch (g_settings.lcd4l_display_type)
{
case SAMSUNG800x480:
//DisplayType = "Samsung800x480_";
DisplayType = "Samsung_";
DisplayType = "Samsung800x480_";
break;
case SAMSUNG800x600:
//DisplayType = "Samsung800x600_";
DisplayType = "Samsung_";
DisplayType = "Samsung800x600_";
break;
case SAMSUNG1024x600:
//DisplayType = "Samsung1024x600_";
DisplayType = "Samsung_";
DisplayType = "Samsung1024x600_";
break;
case PEARL320x240:
default:

View File

@@ -65,10 +65,10 @@ const CMenuOptionChooser::keyval LCD4L_SUPPORT_OPTIONS[] =
const CMenuOptionChooser::keyval_ext LCD4L_DISPLAY_TYPE_OPTIONS[] =
{
{ CLCD4l::PEARL320x240, NONEXISTANT_LOCALE, "Pearl"},
{ CLCD4l::SAMSUNG800x480, NONEXISTANT_LOCALE, "800x480 Samsung"},
{ CLCD4l::SAMSUNG800x600, NONEXISTANT_LOCALE, "800x600 Samsung"},
{ CLCD4l::SAMSUNG1024x600, NONEXISTANT_LOCALE, "1024x600 Samsung"}
{ CLCD4l::PEARL320x240, NONEXISTANT_LOCALE, "320x240 Pearl DPF"},
{ CLCD4l::SAMSUNG800x480, NONEXISTANT_LOCALE, "800x480 Samsung SPF"},
{ CLCD4l::SAMSUNG800x600, NONEXISTANT_LOCALE, "800x600 Samsung SPF"},
{ CLCD4l::SAMSUNG1024x600, NONEXISTANT_LOCALE, "1024x600 Samsung SPF"}
};
#define LCD4L_DISPLAY_TYPE_OPTION_COUNT (sizeof(LCD4L_DISPLAY_TYPE_OPTIONS)/sizeof(CMenuOptionChooser::keyval_ext))