CPU SetPriority changes
Add SetProcessor for WINDOWS64
Fix Sheep color (jeb_)
More const to constexpr
This commit is contained in:
GabsPuNs
2026-04-11 04:52:43 -04:00
parent 1bd22c3bad
commit 1bc99a027d
21 changed files with 71 additions and 21 deletions

View File

@@ -41,12 +41,14 @@ int SheepRenderer::prepareArmor(shared_ptr<LivingEntity> _sheep, int layer, floa
glColor3f(Sheep::COLOR[color][0], Sheep::COLOR[color][1], Sheep::COLOR[color][2]);
}
/*
// 4J - change brought forward from 1.8.2
float brightness = SharedConstants::TEXTURE_LIGHTING ? 1.0f : sheep->getBrightness(a);
int color = sheep->getColor();
glColor3f(brightness * Sheep::COLOR[color][0], brightness * Sheep::COLOR[color][1], brightness * Sheep::COLOR[color][2]);
*/
return 1;
}
return -1;
}