[nostalgia/core] Change TileSheet version conv pixels copy to a move

This commit is contained in:
Gary Talent 2022-02-17 04:31:15 -06:00
parent 7ac7909510
commit 77b270e084

View File

@ -41,7 +41,7 @@ struct TileSheetV1ToV2Converter: public Converter {
v2->subsheet.size = v1.pixels.size();
v2->defaultPalette = v1.defaultPalette;
v2->pal = v1.pal;
v2->pixels = v1.pixels;
v2->pixels = std::move(v1.pixels);
return OxError(0);
}
};