From d5c9768414b4a0bdd353e04f7668071ed08c2fd5 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 13 Aug 2021 21:43:33 +0200 Subject: [PATCH] - append an empty line to thr RFS file to be parsed. Looks like the parser needs the last line to be properly terminated. --- source/games/blood/src/barf.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/games/blood/src/barf.cpp b/source/games/blood/src/barf.cpp index 043cac154..f0fba4fbb 100644 --- a/source/games/blood/src/barf.cpp +++ b/source/games/blood/src/barf.cpp @@ -218,7 +218,7 @@ int RFS::Open(int lumpnum) } int fileSize = (int)hFile.GetLength(); - buffer.Resize(fileSize); + buffer.Resize(fileSize+1); _ptr = buffer.Data(); if (_ptr == NULL) { Printf("BARF: Not enough memory to read %d", lumpnum); @@ -226,11 +226,12 @@ int RFS::Open(int lumpnum) } hFile.Read(_ptr, fileSize); + buffer[fileSize] = '\n'; _curLine = 0; _pUnknown2 = _ptr; _curChar = '\n'; - _pEnd = &_ptr[fileSize - 1]; + _pEnd = &_ptr[fileSize]; return 0; }