Skip to content

Commit

Permalink
Rename all include files to .hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Nightkingale committed Apr 14, 2024
1 parent c83d004 commit 8215a80
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 8 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion source/backup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#include <whb/log.h>
#include <whb/proc.h>

#include "../include/global.h"
#include "../include/global.hpp"


bool backupConfirm = false;
Expand Down
8 changes: 4 additions & 4 deletions source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
#include <whb/log.h>
#include <whb/proc.h>

#include "../include/global.h"
#include "../include/screen.h"
#include "../include/switch.h"
#include "../include/unlink.h"
#include "../include/global.hpp"
#include "../include/screen.hpp"
#include "../include/switch.hpp"
#include "../include/unlink.hpp"


const int BUFFER_SIZE = 0x2000;
Expand Down
2 changes: 1 addition & 1 deletion source/screen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include <coreinit/time.h>
#include <coreinit/thread.h>

#include "../include/global.h"
#include "../include/global.hpp"


void printOnScreen(int line, const char* format, ...) {
Expand Down
2 changes: 1 addition & 1 deletion source/switch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include <whb/log.h>
#include <whb/proc.h>

#include "../include/global.h"
#include "../include/global.hpp"


void handleCleanup(FILE* backup, char* buffer, bool isError = false) {
Expand Down
2 changes: 1 addition & 1 deletion source/unlink.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include <whb/log.h>
#include <whb/proc.h>

#include "../include/global.h"
#include "../include/global.hpp"


void unlinkAccount() {
Expand Down

0 comments on commit 8215a80

Please sign in to comment.