Fix in Save_C64_multi()

This commit is contained in:
Thomas Bernard 2018-11-06 20:50:51 +01:00
parent 5ac8811dbe
commit 06f8809337
No known key found for this signature in database
GPG Key ID: 0FF11B67A5C0863C

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 // Count the number of used colors in the tile
for (n = 0; n<16; n++) for (n = 0; n<16; n++)
{ {
if (cols & (1 << pixel)) if (cols & (1 << n))
used++; used++;
} }