|
From: Lasse Kärkkäi. <tr...@us...> - 2010-01-08 01:04:22
|
Module: performous
Branch: master
Commit: cc6137f3c92455c1595a1654b8e9ba087c034f56
Author: Lasse Karkkainen <tro...@tr...>
Date: Fri Jan 8 03:03:41 2010 +0200
Revert "New colors for players."
This reverts commit ca7a95e52670a62c3b3be86b3c2ce7a91ee6b75f.
The new colors were crap and also incompatible with SingStar mics.
---
game/engine.hh | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/game/engine.hh b/game/engine.hh
index 1f72b42..19516b5 100644
--- a/game/engine.hh
+++ b/game/engine.hh
@@ -11,10 +11,10 @@
namespace {
const Color playerColors[] = {
- Color(0.125, 1.0, 0.1328125),
- Color(0.12890625, 0.546875, 1.0),
- Color(1.0, 0.12890625, 0.98046875),
- Color(1.0, 0.578125, 0.12890625)
+ Color(0.2, 0.5, 0.7),
+ Color(0.8, 0.3, 0.3),
+ Color(0.2, 0.9, 0.2),
+ Color(1.0, 0.6, 0.0)
};
size_t playerColorsSize = sizeof(playerColors) / sizeof(*playerColors);
}
|