From f4703885d4540006802c261c0510cba75e6c3bab Mon Sep 17 00:00:00 2001 From: Derek Jamison Date: Thu, 13 Apr 2023 18:45:31 -0400 Subject: [PATCH] Fix paths for non-windows systems. --- gpio/wiegand/scenes/wiegand_data.c | 2 +- gpio/wiegand/scenes/wiegand_instructions.c | 2 +- gpio/wiegand/scenes/wiegand_load.c | 2 +- gpio/wiegand/scenes/wiegand_main_menu.c | 2 +- gpio/wiegand/scenes/wiegand_play.c | 2 +- gpio/wiegand/scenes/wiegand_read.c | 2 +- gpio/wiegand/scenes/wiegand_save.c | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/gpio/wiegand/scenes/wiegand_data.c b/gpio/wiegand/scenes/wiegand_data.c index 2788604..27c3036 100644 --- a/gpio/wiegand/scenes/wiegand_data.c +++ b/gpio/wiegand/scenes/wiegand_data.c @@ -1,4 +1,4 @@ -#include "..\wiegand.h" +#include "../wiegand.h" void wiegand_add_info_4bit_8bit(FuriString* buffer) { if(bit_count == 8) { diff --git a/gpio/wiegand/scenes/wiegand_instructions.c b/gpio/wiegand/scenes/wiegand_instructions.c index 6493567..1cc1a57 100644 --- a/gpio/wiegand/scenes/wiegand_instructions.c +++ b/gpio/wiegand/scenes/wiegand_instructions.c @@ -1,4 +1,4 @@ -#include "..\wiegand.h" +#include "../wiegand.h" void wiegand_instructions_scene_on_enter(void* context) { App* app = context; diff --git a/gpio/wiegand/scenes/wiegand_load.c b/gpio/wiegand/scenes/wiegand_load.c index 07f2a20..ea57a49 100644 --- a/gpio/wiegand/scenes/wiegand_load.c +++ b/gpio/wiegand/scenes/wiegand_load.c @@ -1,4 +1,4 @@ -#include "..\wiegand.h" +#include "../wiegand.h" void wiegand_load_scene_on_enter(void* context) { App* app = context; diff --git a/gpio/wiegand/scenes/wiegand_main_menu.c b/gpio/wiegand/scenes/wiegand_main_menu.c index 7684be2..80fa2d5 100644 --- a/gpio/wiegand/scenes/wiegand_main_menu.c +++ b/gpio/wiegand/scenes/wiegand_main_menu.c @@ -1,4 +1,4 @@ -#include "..\wiegand.h" +#include "../wiegand.h" /* Triggers a custom event that is handled in the main menu on_scene handler. diff --git a/gpio/wiegand/scenes/wiegand_play.c b/gpio/wiegand/scenes/wiegand_play.c index fd728d1..7d62b17 100644 --- a/gpio/wiegand/scenes/wiegand_play.c +++ b/gpio/wiegand/scenes/wiegand_play.c @@ -1,4 +1,4 @@ -#include "..\wiegand.h" +#include "../wiegand.h" void single_vibro() { NotificationApp* notification = furi_record_open(RECORD_NOTIFICATION); diff --git a/gpio/wiegand/scenes/wiegand_read.c b/gpio/wiegand/scenes/wiegand_read.c index 0c6328c..042b9fd 100644 --- a/gpio/wiegand/scenes/wiegand_read.c +++ b/gpio/wiegand/scenes/wiegand_read.c @@ -1,4 +1,4 @@ -#include "..\wiegand.h" +#include "../wiegand.h" void wiegand_isr_d0(void* context) { UNUSED(context); diff --git a/gpio/wiegand/scenes/wiegand_save.c b/gpio/wiegand/scenes/wiegand_save.c index 24636fe..9f2bdca 100644 --- a/gpio/wiegand/scenes/wiegand_save.c +++ b/gpio/wiegand/scenes/wiegand_save.c @@ -1,4 +1,4 @@ -#include "..\wiegand.h" +#include "../wiegand.h" void wiegand_data_scene_save_name_text_input_callback(void* context) { App* app = context;