From c08e4ecdbd25ce43705c22110a166182950b2b1a Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 1 Oct 2004 08:54:10 +0000 Subject: [PATCH] simplify: GetHashForFile is just a wrapper for FILEMAN->GetFileHash; hash values are passed directly from the driver --- stepmania/src/RageFileManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageFileManager.cpp b/stepmania/src/RageFileManager.cpp index e149c09c5e..a6b114bfdf 100644 --- a/stepmania/src/RageFileManager.cpp +++ b/stepmania/src/RageFileManager.cpp @@ -717,7 +717,7 @@ void FlushDirCache() unsigned int GetHashForFile( const CString &sPath ) { - return GetHashForString( sPath ) + FILEMAN->GetFileHash( sPath ); + return FILEMAN->GetFileHash( sPath ); } unsigned int GetHashForDirectory( const CString &sDir )