From 6210702ace82866961efeb0ac9d7a1862d7bc4e9 Mon Sep 17 00:00:00 2001 From: Jeremy Friesner Date: Sat, 7 Mar 2026 18:03:16 -0800 Subject: [PATCH] Modified Bw64Reader::seek() to take an int64_t offset argument instead of int32_t --- include/bw64/reader.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/bw64/reader.hpp b/include/bw64/reader.hpp index ad110c2..dbde1ab 100644 --- a/include/bw64/reader.hpp +++ b/include/bw64/reader.hpp @@ -218,7 +218,7 @@ namespace bw64 { /** * @brief Seek a frame position in the DataChunk */ - void seek(int32_t offset, std::ios_base::seekdir way = std::ios::beg) { + void seek(int64_t offset, std::ios_base::seekdir way = std::ios::beg) { auto numberOfFramesInt = utils::safeCast(numberOfFrames()); // where to seek relative to according to way