mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
* Save BLACK as lastLedColor during writeBlack
* Remove debug statement overhead
* Re-Add typecasting to ensure readable output
* Revert "New language support: Russian and Chinese (simplified)"
This reverts commit 5c95fab894
.
* Ignore TemporaryError
This commit is contained in:
@@ -46,9 +46,9 @@ static_assert(sizeof(ColorRgb) == 3, "Incorrect size of ColorRgb");
|
||||
inline std::ostream& operator<<(std::ostream& os, const ColorRgb& color)
|
||||
{
|
||||
os << "{"
|
||||
<< color.red << ","
|
||||
<< color.green << ","
|
||||
<< color.blue
|
||||
<< static_cast<unsigned>(color.red) << ","
|
||||
<< static_cast<unsigned>(color.green) << ","
|
||||
<< static_cast<unsigned>(color.blue)
|
||||
<< "}";
|
||||
|
||||
return os;
|
||||
@@ -64,9 +64,9 @@ inline std::ostream& operator<<(std::ostream& os, const ColorRgb& color)
|
||||
inline QTextStream& operator<<(QTextStream &os, const ColorRgb& color)
|
||||
{
|
||||
os << "{"
|
||||
<< color.red << ","
|
||||
<< color.green << ","
|
||||
<< color.blue
|
||||
<< static_cast<unsigned>(color.red) << ","
|
||||
<< static_cast<unsigned>(color.green) << ","
|
||||
<< static_cast<unsigned>(color.blue)
|
||||
<< "}";
|
||||
|
||||
return os;
|
||||
|
Reference in New Issue
Block a user