From 9de5ac05a1c9a04e1005122db3096d7217373e14 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 30 Dec 2005 05:48:45 +0000 Subject: [PATCH] compile fix --- stepmania/src/arch/ArchHooks/ArchHooks_Unix.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/arch/ArchHooks/ArchHooks_Unix.cpp b/stepmania/src/arch/ArchHooks/ArchHooks_Unix.cpp index 5699cb7ab8..ef903ccb86 100644 --- a/stepmania/src/arch/ArchHooks/ArchHooks_Unix.cpp +++ b/stepmania/src/arch/ArchHooks/ArchHooks_Unix.cpp @@ -3,6 +3,7 @@ #include "RageLog.h" #include "RageUtil.h" #include "RageThreads.h" +#include "LocalizedString.h" #include "archutils/Unix/SignalHandler.h" #include "archutils/Unix/GetSysInfo.h" #include "archutils/Unix/LinuxThreadHelpers.h" @@ -259,7 +260,7 @@ void ArchHooks_Unix::MountInitialFilesystems( const CString &sDirOfExecutable ) if( Root == "" && !stat( RageFileManagerUtil::sInitialWorkingDirectory + "/Songs", &st ) && st.st_mode&S_IFDIR ) Root = RageFileManagerUtil::sInitialWorkingDirectory; if( Root == "" ) - RageException::Throw( COULDNT_FIND_SONGS ); + RageException::Throw( COULDNT_FIND_SONGS.GetValue() ); FILEMAN->Mount( "dir", Root, "/" ); #else