CINE: Remove the comment about an old PalmOS compiler

The problematic compiler wouldn't be able to compile any C++11 code,
and the PalmOS port has been removed more than 10 years ago anyway.

Looking at the following original commits

- 3ed2192923
- 420569626c
- 17fef29507

it appears that this workaround was actually meant to be kept, in the
end, so just remove the comment itself.
This commit is contained in:
Donovan Watteau 2022-05-18 13:06:30 +02:00 committed by Filippos Karapetis
parent b9d3282ed6
commit 7ffa660a44

View File

@ -178,11 +178,6 @@ private:
int findMinBrightnessColorIndex(uint minColorIndex = 1);
byte brightness(byte colorIndex);
void setColorFormat(const Graphics::PixelFormat format);
// WORKAROUND: Using a reference to a result here instead of returning an Color object.
// This is needed because when using a Color as return value, this would crash Chrilith's
// compiler for PalmOS.
// TODO: Add more information about the compiler.
void saturatedAddColor(Color &result, const Color &baseColor, signed r, signed g, signed b) const;
private: