earlier food warning / fixed norsemen medbar texture ( had visible white borders before )

This commit is contained in:
Titus Tscharntke 2011-11-02 00:30:10 +00:00
parent bcc97704b6
commit c82ad4689b

View File

@ -1678,18 +1678,18 @@ void Renderer::renderResourceStatus() {
bool isNegativeConsumableDisplayCycle = false; bool isNegativeConsumableDisplayCycle = false;
if(rt->getClass() == rcConsumable) { if(rt->getClass() == rcConsumable) {
// Show in yellow/orange/red font if negative // Show in yellow/orange/red font if negative
if(r->getBalance()*3+r->getAmount()<0){ if(r->getBalance()*5+r->getAmount()<0){
if(time(NULL) % 2 == 0) { if(time(NULL) % 2 == 0) {
isNegativeConsumableDisplayCycle = true; isNegativeConsumableDisplayCycle = true;
if(r->getBalance()*1+r->getAmount()<0){ if(r->getBalance()*1+r->getAmount()<0){
glColor3f(RED.x,RED.y,RED.z); glColor3f(RED.x,RED.y,RED.z);
resourceFontColor = RED; resourceFontColor = RED;
} }
else if(r->getBalance()*2+r->getAmount()<0){ else if(r->getBalance()*3+r->getAmount()<0){
glColor3f(ORANGE.x,ORANGE.y,ORANGE.z); glColor3f(ORANGE.x,ORANGE.y,ORANGE.z);
resourceFontColor = ORANGE; resourceFontColor = ORANGE;
} }
else if(r->getBalance()*3+r->getAmount()<0){ else if(r->getBalance()*5+r->getAmount()<0){
glColor3f(YELLOW.x,YELLOW.y,YELLOW.z); glColor3f(YELLOW.x,YELLOW.y,YELLOW.z);
resourceFontColor = YELLOW; resourceFontColor = YELLOW;
} }