Skip to content

Commit

Permalink
Remove redundant include folder naming
Browse files Browse the repository at this point in the history
  • Loading branch information
Nightkingale committed Apr 29, 2024
1 parent 655cca7 commit 0f4c124
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions source/backup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
#include <whb/log.h>
#include <whb/proc.h>

#include "../include/backup.hpp"
#include "../include/main.hpp"
#include "../include/screen.hpp"
#include "backup.hpp"
#include "main.hpp"
#include "screen.hpp"


bool backup_confirm = false;
Expand Down
12 changes: 6 additions & 6 deletions source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
#include <vpad/input.h>
#include <whb/proc.h>

#include "../include/backup.hpp"
#include "../include/main.hpp"
#include "../include/screen.hpp"
#include "../include/switch.hpp"
#include "../include/unlink.hpp"
#include "../include/utils.hpp"
#include "backup.hpp"
#include "main.hpp"
#include "screen.hpp"
#include "switch.hpp"
#include "unlink.hpp"
#include "utils.hpp"

const int BUFFER_SIZE = 0x2000; // The buffer size allocated for reading and writing files.

Expand Down
4 changes: 2 additions & 2 deletions source/screen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
#include <coreinit/time.h>
#include <coreinit/thread.h>

#include "../include/main.hpp"
#include "../include/utils.hpp"
#include "main.hpp"
#include "utils.hpp"


void print_main_menu() {
Expand Down
6 changes: 3 additions & 3 deletions source/switch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
#include <whb/log.h>
#include <whb/proc.h>

#include "../include/main.hpp"
#include "../include/screen.hpp"
#include "../include/utils.hpp"
#include "main.hpp"
#include "screen.hpp"
#include "utils.hpp"


void handle_cleanup(FILE* backup, char* buffer, bool is_error = false) {
Expand Down
4 changes: 2 additions & 2 deletions source/unlink.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
#include <whb/log.h>
#include <whb/proc.h>

#include "../include/main.hpp"
#include "../include/utils.hpp"
#include "main.hpp"
#include "utils.hpp"


void unlink_account() {
Expand Down
2 changes: 1 addition & 1 deletion source/utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include <whb/log.h>
#include <whb/proc.h>

#include "../include/main.hpp"
#include "main.hpp"


void print_on_screen(int line, const char* format, ...) {
Expand Down

0 comments on commit 0f4c124

Please sign in to comment.