1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-30 16:38:29 +02:00

Remove commented-out "version 1" code from editorclass::load()

Search results for terms in this code, such as the split() function,
become annoying false-positives. So it's better to just remove it
entirely.
This commit is contained in:
Misa 2021-02-07 13:18:39 -08:00 committed by Ethan Lee
parent 06cc5afe27
commit 4728f64e3a

View File

@ -1767,23 +1767,6 @@ bool editorclass::load(std::string& _path)
}
}
/*else if(version==1){
if (pKey == "contents")
{
std::string TextString = (pText);
if(TextString.length())
{
std::vector<std::string> values = split(TextString,',');
contents.clear();
for(int i = 0; i < values.size(); i++)
{
contents.push_back(help.Int(values[i].c_str()));
}
}
}
//}
*/
if (pKey == "edEntities")
{