diff options
Diffstat (limited to 'src/common/file_util.cpp')
| -rw-r--r-- | src/common/file_util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp index b30a67ff9..baa721481 100644 --- a/src/common/file_util.cpp +++ b/src/common/file_util.cpp | |||
| @@ -764,7 +764,7 @@ size_t ReadFileToString(bool text_file, const char* filename, std::string& str) | |||
| 764 | IOFile file(filename, text_file ? "r" : "rb"); | 764 | IOFile file(filename, text_file ? "r" : "rb"); |
| 765 | 765 | ||
| 766 | if (!file.IsOpen()) | 766 | if (!file.IsOpen()) |
| 767 | return false; | 767 | return 0; |
| 768 | 768 | ||
| 769 | str.resize(static_cast<u32>(file.GetSize())); | 769 | str.resize(static_cast<u32>(file.GetSize())); |
| 770 | return file.ReadArray(&str[0], str.size()); | 770 | return file.ReadArray(&str[0], str.size()); |