misc project file fixes from trunk (e.g. rev 345). fixes the 'missing MSVCR90.DLL' absurdity

git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/branches/Rambetter-temp-fixes@357 8a3a26a2-13c4-0310-b231-cf6edde360e5
This commit is contained in:
TTimo
2010-12-24 19:04:32 +00:00
parent 36a1c4bbad
commit a6e2bf8e2d
26 changed files with 52 additions and 35 deletions

View File

@@ -244,7 +244,7 @@ bool FileStream::Open(const char *filename, const char *mode)
m_hFile = fopen(filename, mode);
m_bCloseOnDelete = true;
return (m_hFile != NULL);
return m_hFile != NULL;
}
void MemStream::Close()