From 00f89eb307c03afa6959510a54a4d548f6296b19 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 9 Feb 2006 00:08:40 +0000 Subject: [PATCH] %D -> %0D --- stepmania/src/RageUtil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }