1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-16 19:43:06 +01:00

Fix length calculation

This commit is contained in:
Michał Janiszewski
2023-05-07 20:00:37 +02:00
parent 851632510f
commit 01f32a660f

View File

@@ -73,7 +73,7 @@ public:
{
throw std::runtime_error("Unable to open " + path);
}
auto length = fs.tellg();
auto length = fs.end - fs.beg;
std::unique_ptr<char[]> buffer = std::make_unique<char[]>(length);
fs.read(buffer.get(), length);
auto result = std::string(buffer.get(), buffer.get() + length);