From c9bcad349d75eb010020ff6219f386367040afc5 Mon Sep 17 00:00:00 2001 From: Aaron Kimbrell Date: Fri, 20 Mar 2026 13:03:10 -0500 Subject: [PATCH] Update dZoneManager/Raw.cpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- dZoneManager/Raw.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dZoneManager/Raw.cpp b/dZoneManager/Raw.cpp index e8af952c..f670f67b 100644 --- a/dZoneManager/Raw.cpp +++ b/dZoneManager/Raw.cpp @@ -58,12 +58,12 @@ namespace Raw { return false; } - BinaryIO::BinaryRead(stream, chunk.width); - BinaryIO::BinaryRead(stream, chunk.height); - BinaryIO::BinaryRead(stream, chunk.offsetX); - BinaryIO::BinaryRead(stream, chunk.offsetZ); + BinaryIO::BinaryRead(stream, chunk.width); + BinaryIO::BinaryRead(stream, chunk.height); + BinaryIO::BinaryRead(stream, chunk.offsetX); + BinaryIO::BinaryRead(stream, chunk.offsetZ); - if (stream.fail()) { + if (stream.fail()) { return false; } // For version < 32, shader ID comes before texture IDs if (version < 32) {