From 8e3e6575f33e8527b59cb57694399898e5c6be40 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 15 Feb 2004 23:51:57 +0000 Subject: [PATCH] FixSlashesInPlace when reading from an actor file --- stepmania/src/ActorUtil.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/stepmania/src/ActorUtil.cpp b/stepmania/src/ActorUtil.cpp index c79b502afe..1871ab9290 100644 --- a/stepmania/src/ActorUtil.cpp +++ b/stepmania/src/ActorUtil.cpp @@ -46,6 +46,7 @@ Actor* LoadFromActorFile( CString sIniPath, CString sLayer ) ini.GetValue( sLayer, "Type", sType ); CString sFile; ini.GetValue( sLayer, "File", sFile ); + FixSlashesInPlace( sFile ); CString sDir = Dirname( sIniPath ); if( sType == "SongCreditDisplay" )