diff --git a/nfc_playlist.h b/nfc_playlist.h index a3829653bc3..5ccedfdbf7a 100644 --- a/nfc_playlist.h +++ b/nfc_playlist.h @@ -1,9 +1,12 @@ #pragma once #include #include + #include -#include + #include + +#include #include #include #include @@ -13,7 +16,9 @@ #include #include #include + #include + #include typedef enum { diff --git a/nfc_playlist_i.h b/nfc_playlist_i.h index 7baf13d335c..fbfa9612564 100644 --- a/nfc_playlist_i.h +++ b/nfc_playlist_i.h @@ -1,11 +1,11 @@ #pragma once -#include "scences/main_menu.h" -#include "scences/settings.h" -#include "scences/emulation.h" -#include "scences/playlist_select.h" -#include "scences/file_edit.h" -#include "scences/file_rename.h" -#include "scences/confirm_delete.h" -#include "scences/view_playlist_content.h" -#include "scences/nfc_select.h" -#include "scences/name_new_file.h" \ No newline at end of file +#include "scenes/main_menu.h" +#include "scenes/settings.h" +#include "scenes/emulation.h" +#include "scenes/playlist_select.h" +#include "scenes/file_edit.h" +#include "scenes/file_rename.h" +#include "scenes/confirm_delete.h" +#include "scenes/view_playlist_content.h" +#include "scenes/nfc_select.h" +#include "scenes/name_new_file.h" \ No newline at end of file diff --git a/scences/confirm_delete.c b/scenes/confirm_delete.c similarity index 98% rename from scences/confirm_delete.c rename to scenes/confirm_delete.c index 783d1ec50dd..e01d67c5d5b 100644 --- a/scences/confirm_delete.c +++ b/scenes/confirm_delete.c @@ -1,5 +1,5 @@ #include "nfc_playlist.h" -#include "scences/confirm_delete.h" +#include "scenes/confirm_delete.h" void nfc_playlist_confirm_delete_menu_callback(GuiButtonType result, InputType type, void* context) { NfcPlaylist* nfc_playlist = context; diff --git a/scences/confirm_delete.h b/scenes/confirm_delete.h similarity index 100% rename from scences/confirm_delete.h rename to scenes/confirm_delete.h diff --git a/scences/emulation.c b/scenes/emulation.c similarity index 99% rename from scences/emulation.c rename to scenes/emulation.c index f99c27cc447..978e795339f 100644 --- a/scences/emulation.c +++ b/scenes/emulation.c @@ -1,5 +1,5 @@ #include "nfc_playlist.h" -#include "scences/emulation.h" +#include "scenes/emulation.h" NfcPlaylistEmulationState EmulationState = NfcPlaylistEmulationState_Stopped; diff --git a/scences/emulation.h b/scenes/emulation.h similarity index 100% rename from scences/emulation.h rename to scenes/emulation.h diff --git a/scences/file_edit.c b/scenes/file_edit.c similarity index 99% rename from scences/file_edit.c rename to scenes/file_edit.c index e2d72728d0d..e3d35a2effa 100644 --- a/scences/file_edit.c +++ b/scenes/file_edit.c @@ -1,5 +1,5 @@ #include "nfc_playlist.h" -#include "scences/file_edit.h" +#include "scenes/file_edit.h" void nfc_playlist_file_edit_menu_callback(void* context, uint32_t index) { NfcPlaylist* nfc_playlist = context; diff --git a/scences/file_edit.h b/scenes/file_edit.h similarity index 100% rename from scences/file_edit.h rename to scenes/file_edit.h diff --git a/scences/file_rename.c b/scenes/file_rename.c similarity index 98% rename from scences/file_rename.c rename to scenes/file_rename.c index e3ebe30652c..3ded301c663 100644 --- a/scences/file_rename.c +++ b/scenes/file_rename.c @@ -1,5 +1,5 @@ #include "nfc_playlist.h" -#include "scences/file_rename.h" +#include "scenes/file_rename.h" void nfc_playlist_file_rename_menu_callback(void* context) { NfcPlaylist* nfc_playlist = context; diff --git a/scences/file_rename.h b/scenes/file_rename.h similarity index 100% rename from scences/file_rename.h rename to scenes/file_rename.h diff --git a/scences/main_menu.c b/scenes/main_menu.c similarity index 98% rename from scences/main_menu.c rename to scenes/main_menu.c index ca1232294ae..c744937a2ae 100644 --- a/scences/main_menu.c +++ b/scenes/main_menu.c @@ -1,5 +1,5 @@ #include "nfc_playlist.h" -#include "scences/main_menu.h" +#include "scenes/main_menu.h" void nfc_playlist_main_menu_menu_callback(void* context, uint32_t index) { NfcPlaylist* nfc_playlist = context; diff --git a/scences/main_menu.h b/scenes/main_menu.h similarity index 100% rename from scences/main_menu.h rename to scenes/main_menu.h diff --git a/scences/name_new_file.c b/scenes/name_new_file.c similarity index 98% rename from scences/name_new_file.c rename to scenes/name_new_file.c index 1baae1cbc20..20c7e592e35 100644 --- a/scences/name_new_file.c +++ b/scenes/name_new_file.c @@ -1,5 +1,5 @@ #include "nfc_playlist.h" -#include "scences/name_new_file.h" +#include "scenes/name_new_file.h" void nfc_playlist_name_new_file_menu_callback(void* context) { NfcPlaylist* nfc_playlist = context; diff --git a/scences/name_new_file.h b/scenes/name_new_file.h similarity index 100% rename from scences/name_new_file.h rename to scenes/name_new_file.h diff --git a/scences/nfc_select.c b/scenes/nfc_select.c similarity index 98% rename from scences/nfc_select.c rename to scenes/nfc_select.c index 3607dda1b8a..3698cc29fa6 100644 --- a/scences/nfc_select.c +++ b/scenes/nfc_select.c @@ -1,5 +1,5 @@ #include "nfc_playlist.h" -#include "scences/nfc_select.h" +#include "scenes/nfc_select.h" void nfc_playlist_nfc_select_menu_callback(void* context) { NfcPlaylist* nfc_playlist = context; diff --git a/scences/nfc_select.h b/scenes/nfc_select.h similarity index 100% rename from scences/nfc_select.h rename to scenes/nfc_select.h diff --git a/scences/playlist_select.c b/scenes/playlist_select.c similarity index 97% rename from scences/playlist_select.c rename to scenes/playlist_select.c index 0bdb3c43fc5..9b169b608db 100644 --- a/scences/playlist_select.c +++ b/scenes/playlist_select.c @@ -1,5 +1,5 @@ #include "nfc_playlist.h" -#include "scences/playlist_select.h" +#include "scenes/playlist_select.h" void nfc_playlist_playlist_select_menu_callback(void* context) { NfcPlaylist* nfc_playlist = context; diff --git a/scences/playlist_select.h b/scenes/playlist_select.h similarity index 100% rename from scences/playlist_select.h rename to scenes/playlist_select.h diff --git a/scences/settings.c b/scenes/settings.c similarity index 99% rename from scences/settings.c rename to scenes/settings.c index 417690ee94e..27b2dde3791 100644 --- a/scences/settings.c +++ b/scenes/settings.c @@ -1,5 +1,5 @@ #include "nfc_playlist.h" -#include "scences/settings.h" +#include "scenes/settings.h" void nfc_playlist_settings_menu_callback(void* context, uint32_t index) { NfcPlaylist* nfc_playlist = context; diff --git a/scences/settings.h b/scenes/settings.h similarity index 100% rename from scences/settings.h rename to scenes/settings.h diff --git a/scences/view_playlist_content.c b/scenes/view_playlist_content.c similarity index 96% rename from scences/view_playlist_content.c rename to scenes/view_playlist_content.c index 7562b73bff8..14cba39516c 100644 --- a/scences/view_playlist_content.c +++ b/scenes/view_playlist_content.c @@ -1,5 +1,5 @@ #include "nfc_playlist.h" -#include "scences/view_playlist_content.h" +#include "scenes/view_playlist_content.h" void nfc_playlist_view_playlist_content_scene_on_enter(void* context) { NfcPlaylist* nfc_playlist = context; diff --git a/scences/view_playlist_content.h b/scenes/view_playlist_content.h similarity index 100% rename from scences/view_playlist_content.h rename to scenes/view_playlist_content.h