aboutsummaryrefslogtreecommitdiff
path: root/src/ARCodeFile.cpp
diff options
context:
space:
mode:
authorArisotura <thetotalworm@gmail.com>2021-05-03 17:02:38 +0200
committerArisotura <thetotalworm@gmail.com>2021-05-03 17:02:38 +0200
commitb7d5a7db7508dba1e1e5f527accf0dadc84efb21 (patch)
tree96a3b6b6e46f6581fcda02a569558d550cc29fe4 /src/ARCodeFile.cpp
parent41cd092a15b3dbb9c3118124537e0481dfbaddc7 (diff)
don't attempt to parse lines that failed to fetch
Diffstat (limited to 'src/ARCodeFile.cpp')
-rw-r--r--src/ARCodeFile.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ARCodeFile.cpp b/src/ARCodeFile.cpp
index 2510b6e..e7780b7 100644
--- a/src/ARCodeFile.cpp
+++ b/src/ARCodeFile.cpp
@@ -60,8 +60,8 @@ bool ARCodeFile::Load()
char linebuf[1024];
while (!feof(f))
{
- if (fgets(linebuf, 1024, f) == NULL)
- printf("Error reading string from file!");
+ if (fgets(linebuf, 1024, f) == nullptr)
+ break;
linebuf[1023] = '\0';