From 4e5cced21c6b42099b193f51615c400bf9fc93a5 Mon Sep 17 00:00:00 2001 From: G2-Games Date: Mon, 8 Jul 2024 16:32:07 -0500 Subject: [PATCH] Remove `seek` requirement for writing --- luca_pak/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/luca_pak/src/lib.rs b/luca_pak/src/lib.rs index 7d789f6..951e39c 100644 --- a/luca_pak/src/lib.rs +++ b/luca_pak/src/lib.rs @@ -207,7 +207,7 @@ impl Pak { } /// Encode a PAK file into a byte stream. - pub fn encode( + pub fn encode( &self, mut output: &mut T ) -> Result<(), PakError> {