mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03: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:
@@ -5196,7 +5196,7 @@ void Game::customloadquick(std::string savfile)
|
|||||||
{
|
{
|
||||||
if (cliplaytest) {
|
if (cliplaytest) {
|
||||||
savex = playx;
|
savex = playx;
|
||||||
savey = savey;
|
savey = playy;
|
||||||
saverx = playrx;
|
saverx = playrx;
|
||||||
savery = playry;
|
savery = playry;
|
||||||
savegc = playgc;
|
savegc = playgc;
|
||||||
|
|||||||
Reference in New Issue
Block a user