CString -> RString

This commit is contained in:
Chris Danford
2006-01-22 01:00:06 +00:00
parent 870ed267fc
commit 7f821e8cfc
578 changed files with 3943 additions and 3946 deletions
@@ -61,9 +61,9 @@ RageSound_DSound_Software::RageSound_DSound_Software()
m_pPCM = NULL;
}
CString RageSound_DSound_Software::Init()
RString RageSound_DSound_Software::Init()
{
CString sError = ds.Init();
RString sError = ds.Init();
if( sError != "" )
return sError;
@@ -103,7 +103,7 @@ CString RageSound_DSound_Software::Init()
m_MixingThread.SetName("Mixer thread");
m_MixingThread.Create( MixerThread_start, this );
return CString();
return RString();
}
RageSound_DSound_Software::~RageSound_DSound_Software()