Revert "Revert "- remove obsolete ifdef's""

This reverts commit 7aa4eed69b.


Origin commit data
------------------
Commit: 3c3707b119
Author: vanhofen <vanhofen@gmx.de>
Date: 2017-05-08 (Mon, 08 May 2017)
This commit is contained in:
vanhofen
2017-05-08 23:47:26 +02:00
parent a76db329fa
commit cf8a76c2ce
2 changed files with 0 additions and 4 deletions

View File

@@ -72,9 +72,7 @@ int CInfoMenu::exec(CMenuTarget* parent, const std::string &actionKey) //NI
{ {
char str[1024]; char str[1024];
sprintf(str, "cs_get_revision(): 0x%02X\n", cs_get_revision()); sprintf(str, "cs_get_revision(): 0x%02X\n", cs_get_revision());
#ifdef BOXMODEL_CS_HD2
sprintf(str, "%scs_get_chip_type(): 0x%04X\n", str, cs_get_chip_type()); sprintf(str, "%scs_get_chip_type(): 0x%04X\n", str, cs_get_chip_type());
#endif
ShowMsg(LOCALE_MESSAGEBOX_INFO, str, CMsgBox::mbrBack, CMsgBox::mbBack); ShowMsg(LOCALE_MESSAGEBOX_INFO, str, CMsgBox::mbrBack, CMsgBox::mbBack);
return res; return res;
} }

View File

@@ -141,9 +141,7 @@ void CFlashUpdate::update_php(std::string &url, const char* type)
if (url.find("update.php") != std::string::npos) if (url.find("update.php") != std::string::npos)
{ {
url += "?revision=" + to_string(cs_get_revision()); url += "?revision=" + to_string(cs_get_revision());
#ifdef BOXMODEL_CS_HD2
url += "&chip_type=" + to_string(cs_get_chip_type()); url += "&chip_type=" + to_string(cs_get_chip_type());
#endif
url += "&image_type=" + (std::string)type; url += "&image_type=" + (std::string)type;
printf("[update_php] url %s\n", url.c_str()); printf("[update_php] url %s\n", url.c_str());
} }