diff options
| author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-11-11 09:03:01 +0100 |
|---|---|---|
| committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-11-11 09:03:01 +0100 |
| commit | 4021431a0da18829f3b0d47bbc83e49c783ebf76 (patch) | |
| tree | ee0edb1094dc1e3f9318efa214180dade72cef30 /src/crepe/api/Color.cpp | |
| parent | 89c96e6478535c3a73aaa6c29591e008399b1a09 (diff) | |
| parent | 3a690f7d0c91b92b9cdfe62f44dba8db90142abc (diff) | |
master merge
Diffstat (limited to 'src/crepe/api/Color.cpp')
| -rw-r--r-- | src/crepe/api/Color.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/crepe/api/Color.cpp b/src/crepe/api/Color.cpp index fc6313d..9e5f187 100644 --- a/src/crepe/api/Color.cpp +++ b/src/crepe/api/Color.cpp @@ -11,8 +11,7 @@ Color Color::cyan = Color(0, 255, 255, 0); Color Color::yellow = Color(255, 255, 0, 0); Color Color::magenta = Color(255, 0, 255, 0); -// FIXME: do we really need double precision for color values? -Color::Color(double red, double green, double blue, double alpha) { +Color::Color(uint8_t red, uint8_t green, uint8_t blue, uint8_t alpha) { this->a = alpha; this->r = red; this->g = green; |