From 2931a35c79acbe5944db7df538377daf55e3f92b Mon Sep 17 00:00:00 2001 From: Alex Duchesne Date: Thu, 10 Jul 2025 15:04:35 -0400 Subject: [PATCH] rg_storage: Update the deprecated esp-idf miniz header's path (#209) --- components/retro-go/rg_storage.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/components/retro-go/rg_storage.c b/components/retro-go/rg_storage.c index c36806c9..501f8da9 100644 --- a/components/retro-go/rg_storage.c +++ b/components/retro-go/rg_storage.c @@ -507,8 +507,10 @@ bool rg_storage_write_file(const char *path, const void *data_ptr, size_t data_l */ #if RG_ZIP_SUPPORT -#ifdef ESP_PLATFORM -#include +#if CONFIG_IDF_TARGET_ESP32 +#include +#elif CONFIG_IDF_TARGET_ESP32S3 +#include #else #include #endif