diff options
author | Autechre | 2020-08-28 03:58:21 +0200 |
---|---|---|
committer | GitHub | 2020-08-28 03:58:21 +0200 |
commit | e4b12f434055fc703e80d18cbf350582877802d0 (patch) | |
tree | a5a85dba74a29e433c3de3e32f67d2933586b1a4 /3ds | |
parent | 856af16ba64951d99a6a9aa84b1a10dc1540a868 (diff) | |
parent | 23c4f08c8376415450863ec5306ba7b5247a9fd8 (diff) | |
download | picogpsp-e4b12f434055fc703e80d18cbf350582877802d0.tar.gz picogpsp-e4b12f434055fc703e80d18cbf350582877802d0.tar.bz2 picogpsp-e4b12f434055fc703e80d18cbf350582877802d0.zip |
Merge pull request #73 from justinweiss/update-libctru
[3DS] Move has_rosalina to avoid duplicate definitions
Diffstat (limited to '3ds')
-rw-r--r-- | 3ds/3ds_utils.c | 1 | ||||
-rw-r--r-- | 3ds/3ds_utils.h | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/3ds/3ds_utils.c b/3ds/3ds_utils.c index 266eca0..6963f81 100644 --- a/3ds/3ds_utils.c +++ b/3ds/3ds_utils.c @@ -6,6 +6,7 @@ #include "3ds_utils.h" typedef s32 (*ctr_callback_type)(void); +static bool has_rosalina; void check_rosalina() { int64_t version; diff --git a/3ds/3ds_utils.h b/3ds/3ds_utils.h index beeb002..a84b225 100644 --- a/3ds/3ds_utils.h +++ b/3ds/3ds_utils.h @@ -7,7 +7,6 @@ void ctr_flush_invalidate_cache(void); extern __attribute((weak)) unsigned int __ctr_svchax; -bool has_rosalina; void check_rosalina(); void ctr_clear_cache(void); |