Fix in Save_C64_multi()

This commit is contained in:
Thomas Bernard
2018-11-06 20:50:51 +01:00
parent 5ac8811dbe
commit 06f8809337

View File

@@ -2800,7 +2800,7 @@ int Save_C64_multi(T_IO_Context *context, byte saveWhat, byte loadAddr)
// Count the number of used colors in the tile
for (n = 0; n<16; n++)
{
if (cols & (1 << pixel))
if (cols & (1 << n))
used++;
}