1
0
mirror of https://github.com/moparisthebest/minetest synced 2024-08-13 16:53:49 -04:00

Fix potential out-of-bounds array index

This commit is contained in:
Craig Robbins 2015-01-16 14:32:27 +10:00
parent 5aeeb219e3
commit 5e58a95491

View File

@ -346,7 +346,7 @@ void finalColorBlend(video::SColor& result,
1, 4, 6, 6, 6, 5, 4, 3, 2, 1, 0, 0, 0, 0, 0, 0, 1, 4, 6, 6, 6, 5, 4, 3, 2, 1, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
}; };
b += emphase_blue_when_dark[b / 8]; b += emphase_blue_when_dark[irr::core::clamp(b, 0, 255) / 8];
b = irr::core::clamp(b, 0, 255); b = irr::core::clamp(b, 0, 255);
// Artificial light is yellow-ish // Artificial light is yellow-ish