diff --git a/stepmania/src/RageUtil.cpp b/stepmania/src/RageUtil.cpp index 3996bf1737..72e6e51364 100644 --- a/stepmania/src/RageUtil.cpp +++ b/stepmania/src/RageUtil.cpp @@ -943,7 +943,7 @@ RString URLEncode( const RString &sStr ) if( t >= '!' && t <= 'z' ) sOutput += t; else - sOutput += "%" + ssprintf( "%X", t ); + sOutput += "%" + ssprintf( "%02X", t ); } return sOutput; }