mirror of
https://github.com/DarkStore-3DS/DarkStore.git
synced 2026-07-03 00:39:02 +00:00
Fix the multiple definitions error.
I don't know why it worked before like that.. but after updating devkitARM etc it seems to cause compilation issues.
This commit is contained in:
+2
-2
@@ -10,8 +10,8 @@ typedef enum
|
||||
LOOP_EXIT, /*!< Terminate looping */
|
||||
} loop_status_t;
|
||||
|
||||
bool isTransfering;
|
||||
char ftp_accepted_connection[50], ftp_file_transfer[100];
|
||||
extern bool isTransfering;
|
||||
extern char ftp_accepted_connection[50], ftp_file_transfer[100];
|
||||
|
||||
int ftp_init(void);
|
||||
loop_status_t ftp_loop(void);
|
||||
|
||||
Reference in New Issue
Block a user