Fix ubuntu compiling
Some checks failed
Build Dusk / build-linux (push) Successful in 43s
Build Dusk / release (push) Failing after 12s

This commit is contained in:
2025-11-12 15:09:17 -06:00
parent 1a773cb8ba
commit 397466f0a8

View File

@@ -26,7 +26,8 @@ errorret_t assetLanguageInit(
assertNotNull(lang, "Language asset cannot be NULL");
assertNotNull(zipFile, "Zip file cannot be NULL");
assertNull(lang->zip, "Language asset zip file must be NULL.");
assertTrue(zip_file_is_seekable(zipFile), "Language file must be seekable.");
// I want this but ubuntu isn't compiling with it right now.
// assertTrue(zip_file_is_seekable(zipFile), "Language file must be seekable.");
// We now own the zip file handle.
lang->zip = zipFile;