diff options
| author | micknoise <mickgrierson@gmail.com> | 2015-08-08 21:37:11 +0100 |
|---|---|---|
| committer | micknoise <mickgrierson@gmail.com> | 2015-08-08 21:37:11 +0100 |
| commit | 00840fe549f867eb8e4ab0f94ec3b11dd1b38272 (patch) | |
| tree | f0051b8192f0a83c831bfc7d0cc0dd1bd70ff80a /maximilian.cpp | |
| parent | 1100fc8c462d9a17731340596e7d9c07adb3fe54 (diff) | |
Tested and Working in Visual Studio 2015. Commit!
Diffstat (limited to 'maximilian.cpp')
| -rw-r--r-- | maximilian.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/maximilian.cpp b/maximilian.cpp index 7749c7b..7ee5868 100644 --- a/maximilian.cpp +++ b/maximilian.cpp @@ -572,7 +572,7 @@ bool maxiSample::read() { bool result; ifstream inFile( myPath.c_str(), ios::in | ios::binary); - result = inFile; + result = (bool) inFile; if (inFile) { bool datafound = false; inFile.seekg(4, ios::beg); |
