Fix screenshot app (#57)

Make it part of the correct platform build
This commit is contained in:
Ken Van Hoeylandt 2024-08-31 18:10:52 +02:00 committed by GitHub
parent 660833f2ec
commit fd27799826
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -44,8 +44,9 @@ extern const AppManifest wifi_connect_app;
extern const AppManifest wifi_manage_app;
#ifdef ESP_PLATFORM
extern const AppManifest screenshot_app;
extern const AppManifest gpio_app;
#else
extern const AppManifest screenshot_app;
#endif
static const AppManifest* const system_apps[] = {
@ -56,9 +57,10 @@ static const AppManifest* const system_apps[] = {
&system_info_app,
&wifi_connect_app,
&wifi_manage_app,
#ifdef ESP_PLATFORM // Screenshots don't work yet on ESP32
#ifdef ESP_PLATFORM
&gpio_app,
&screenshot_app,
#else
&screenshot_app, // Screenshots don't work yet on ESP32
#endif
};