From 7f326ae2cfba9775ddfad9cfca0e67f101ea1cf0 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 11 Feb 2006 03:41:05 +0000 Subject: [PATCH] fix example --- stepmania/src/RageUtil.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stepmania/src/RageUtil.cpp b/stepmania/src/RageUtil.cpp index 72e6e51364..2d0fb7f22a 100644 --- a/stepmania/src/RageUtil.cpp +++ b/stepmania/src/RageUtil.cpp @@ -581,10 +581,10 @@ RString str="a,b,c"; int start = 0, size = -1; while( 1 ) { - do_split( str, ",", begin, size ); - if( begin == str.end() ) + do_split( str, ",", start, size ); + if( start == str.size() ) break; - str[begin] = 'Q'; + str[start] = 'Q'; } */