diff --git a/Source/Common/FileClass.cpp b/Source/Common/FileClass.cpp index 902eaa753..7d350a21b 100644 --- a/Source/Common/FileClass.cpp +++ b/Source/Common/FileClass.cpp @@ -155,7 +155,7 @@ bool CFile::Open(const char * lpszFileName, uint32_t nOpenFlags) if ((nOpenFlags & CFileBase::modeWrite) == CFileBase::modeWrite || (nOpenFlags & CFileBase::modeReadWrite) == CFileBase::modeReadWrite) { - printf("tryinng to open %s (rb+)\n",lpszFileName); + printf("Trying to open %s (rb+).\n", lpszFileName); m_hFile = fopen(lpszFileName, "rb+"); if (m_hFile != NULL) { @@ -164,7 +164,7 @@ bool CFile::Open(const char * lpszFileName, uint32_t nOpenFlags) } else if ((nOpenFlags & CFileBase::modeRead) == CFileBase::modeRead) { - printf("tryinng to open %s (rb)\n",lpszFileName); + printf("Trying to open %s (rb).\n", lpszFileName); m_hFile = fopen(lpszFileName, "rb"); if (m_hFile != NULL) {