summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJcw87 <Jcw87@users.noreply.github.com>2023-04-29 17:31:04 -0700
committerGitHub <noreply@github.com>2023-04-29 17:31:04 -0700
commit0c4e853e4bc94bfe736c5575075334cc6e3d6397 (patch)
treecd4a2dfa640349ff7454d2b935e6a97782e8744d /include
parentca4ebc90127acd223418c774bd0235bb80e1d672 (diff)
fix functions not returning values (#324)
Diffstat (limited to 'include')
-rw-r--r--include/DynamicLink.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/DynamicLink.h b/include/DynamicLink.h
index 3fe155923c..f9da596ca8 100644
--- a/include/DynamicLink.h
+++ b/include/DynamicLink.h
@@ -54,7 +54,7 @@ struct DynamicModuleControl : DynamicModuleControlBase {
/* 80262660 */ DynamicModuleControl(char const*);
/* 802626D0 */ static JKRArchive* mountCallback(void*);
/* 8026275C */ static bool initialize();
- /* 80262794 */ static void* callback(void*);
+ /* 80262794 */ static bool callback(void*);
/* 0x10 */ OSModuleInfo* mModule;
/* 0x14 */ void* mBss;