mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 01:59:43 +01: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:
parent
06cc5afe27
commit
4728f64e3a
1 changed files with 0 additions and 17 deletions
|
@ -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")
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue