mirror of
https://github.com/The-Powder-Toy/The-Powder-Toy.git
synced 2025-08-28 18:29:49 +02:00
Missing element fix no.823712
Off-by-one in 4c2c95c72b
. This would cause the most recently added element in any specific version of the game between versions 78.1 and 96.0 to be reported as missing in saves made with that version of the game.
This commit is contained in:
@@ -123,7 +123,7 @@ void GameSave::MapPalette()
|
||||
found = info;
|
||||
}
|
||||
}
|
||||
for (int i = 1; i < found.maxValid; i++)
|
||||
for (int i = 1; i <= found.maxValid; i++)
|
||||
{
|
||||
if (i >= found.golHoleFirst && i <= found.golHoleLast)
|
||||
{
|
||||
|
Reference in New Issue
Block a user