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

Fix a copy-paste error in getLevelMetaData()

Whoops.
This commit is contained in:
Misa 2020-05-07 20:55:26 -07:00 committed by Ethan Lee
parent 29ff773cc4
commit 38a25b985e

View file

@ -224,7 +224,7 @@ bool editorclass::getLevelMetaData(std::string& _path, LevelMetaData& _data )
_data.Desc1 = find_desc1(buf);
_data.Desc2 = find_desc2(buf);
_data.Desc3 = find_desc3(buf);
_data.website = find_desc3(buf);
_data.website = find_website(buf);
_data.filename = _path;
return true;