From 26e14188976a7d0e6266b227ee57796f42f2d93f Mon Sep 17 00:00:00 2001 From: Sacha Date: Tue, 15 Jul 2014 05:42:41 +1000 Subject: [PATCH] Fix rFile --- Utilities/rFile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utilities/rFile.cpp b/Utilities/rFile.cpp index 20acd70efd..c0257fbed7 100644 --- a/Utilities/rFile.cpp +++ b/Utilities/rFile.cpp @@ -153,7 +153,7 @@ bool rFile::Open(const std::string &filename, rFile::OpenMode mode, int access) bool rFile::Exists(const std::string &file) { - rExists(file); + return rExists(file); } bool rFile::IsOpened() const