Navigation Menu

Skip to content

Commit

Permalink
Cleanup: Spurious debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Jun 2, 2014
1 parent 284ea29 commit b3fac7d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions doomsday/libdoomsday/src/filesys/fs_windows.cpp
Expand Up @@ -24,14 +24,12 @@ using namespace de;

FILE *FS_Win32_fopen(char const *filenameUtf8, char const *mode)
{
qDebug() << "Trying to open"<< String(filenameUtf8);
return _wfopen(String(filenameUtf8).toStdWString().c_str(),
String(mode).toStdWString().c_str());
}

int FS_Win32_access(char const *pathUtf8, int mode)
{
qDebug() << "Trying to access"<< String(pathUtf8);
return _waccess(String(pathUtf8).toStdWString().c_str(), mode);
}

Expand Down

0 comments on commit b3fac7d

Please sign in to comment.