Fix Dolphin crash

This commit is contained in:
2026-03-11 07:27:06 -05:00
parent 9b87dfa1a9
commit 5bd43a4643
9 changed files with 27 additions and 8 deletions

View File

@@ -61,7 +61,7 @@ errorret_t assetInitLinux(void) {
ASSET.zip = zip_open(searchPath, ZIP_RDONLY, &error);
if(ASSET.zip == NULL) continue;
if(error != 0) {
printf("Warning: Opened asset file with non-zero error code: %d\n", error);
printf("Opened asset file with non-zero error code: %d\n", error);
ASSET.zip = NULL;
continue;
}