diff --git a/stepmania/src/RageUtil.cpp b/stepmania/src/RageUtil.cpp index 3cde44c513..955be9999d 100644 --- a/stepmania/src/RageUtil.cpp +++ b/stepmania/src/RageUtil.cpp @@ -159,7 +159,7 @@ void do_split( const S &Source, const S &Deliminator, vector &AddIt, const bo unsigned startpos = 0; do { - unsigned pos = Source.find_first_of(Deliminator, startpos); + unsigned pos = Source.find(Deliminator, startpos); if ( pos == Source.npos ) pos=Source.size(); S AddCString = Source.substr(startpos, pos-startpos);