1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-12-17 03:28:05 +00:00

fixes for Pandora

This commit is contained in:
Zeno Rogue
2017-03-25 02:10:15 +01:00
parent 9240cc48b3
commit 51f2ff9d4a
3 changed files with 14 additions and 1 deletions

View File

@@ -1793,7 +1793,7 @@ namespace svg {
void fixgamma(unsigned int& color) {
unsigned char *c = (unsigned char*) (&color);
for(int i=1; i<4; i++) c[i] = 255 * pow(c[i] / 255.0, gamma);
for(int i=1; i<4; i++) c[i] = 255 * pow(float(c[i] / 255.0), float(gamma));
}
int svgsize;