From f7e136940a5632f13fb70d61e161dd0c87e05376 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Sat, 29 Nov 2003 11:17:30 +0000 Subject: [PATCH] fix VC6 compile error --- stepmania/src/RageFile.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageFile.h b/stepmania/src/RageFile.h index 2805899c8f..93a9dd1469 100644 --- a/stepmania/src/RageFile.h +++ b/stepmania/src/RageFile.h @@ -39,7 +39,7 @@ public: void Close(); bool IsOpen() { return (mFP == NULL); } - bool AtEOF() { return feof(mFP); } + bool AtEOF() { return !!feof(mFP); } int GetError() { return ferror(mFP); } FILE *GetFilePointer() { return mFP; }