rg_storage: Update the deprecated esp-idf miniz header's path (#209)

This commit is contained in:
Alex Duchesne 2025-07-10 15:04:35 -04:00
parent 36b2eafbd3
commit 2931a35c79

View File

@ -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 <rom/miniz.h>
#if CONFIG_IDF_TARGET_ESP32
#include <esp32/rom/miniz.h>
#elif CONFIG_IDF_TARGET_ESP32S3
#include <esp32s3/rom/miniz.h>
#else
#include <miniz.h>
#endif