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
+2 -2
View File
@@ -747,7 +747,7 @@ struct SurfaceHeader
};
/* Save and load RageSurfaces to disk, in a very fast, nonportable way. */
bool RageSurfaceUtils::SaveSurface( const RageSurface *img, CString file )
bool RageSurfaceUtils::SaveSurface( const RageSurface *img, RString file )
{
RageFile f;
if( !f.Open( file, RageFile::WRITE ) )
@@ -778,7 +778,7 @@ bool RageSurfaceUtils::SaveSurface( const RageSurface *img, CString file )
return true;
}
RageSurface *RageSurfaceUtils::LoadSurface( CString file )
RageSurface *RageSurfaceUtils::LoadSurface( RString file )
{
RageFile f;
if( !f.Open( file ) )