mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-16 19:43:06 +01:00
Fix length calculation
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user