mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-30 01:48:15 +03:00
Remove semi-useless function editorclass::weirdloadthing()
Looks like this function was created because editorclass::load() takes in a string by reference, not by value, and thus mutates it afterwards, so if you passed a string in when you didn't want it to be mutated, bad things would happen. However, a better workaround for the above issue would simply to duplicate the string and pass that string instead, thus the original string wouldn't be affected.
This commit is contained in:
@@ -344,14 +344,6 @@ void editorclass::reset()
|
||||
returneditoralpha = 0;
|
||||
}
|
||||
|
||||
void editorclass::weirdloadthing(std::string t)
|
||||
{
|
||||
//Stupid pointless function because I hate C++ and everything to do with it
|
||||
//It's even stupider now that I don't need to append .vvvvvv anymore! bah, whatever
|
||||
//t=t+".vvvvvv";
|
||||
load(t);
|
||||
}
|
||||
|
||||
void editorclass::gethooks()
|
||||
{
|
||||
//Scan through the script and create a hooks list based on it
|
||||
|
||||
Reference in New Issue
Block a user