1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-12-22 17:49:43 +01:00

Fix copy-paste bug in command-line playtesting code

Found this because when I compiled with Clang, -Wself-assign-field was
enabled.
This commit is contained in:
Misa 2020-05-04 11:41:38 -07:00 committed by Ethan Lee
parent f78603ef87
commit dc19a51d38

View file

@ -5196,7 +5196,7 @@ void Game::customloadquick(std::string savfile)
{
if (cliplaytest) {
savex = playx;
savey = savey;
savey = playy;
saverx = playrx;
savery = playry;
savegc = playgc;