summaryrefslogtreecommitdiff
path: root/include/DynamicLink.h
diff options
context:
space:
mode:
authorLagoLunatic <LagoLunatic@users.noreply.github.com>2025-01-27 19:26:14 -0500
committerLagoLunatic <LagoLunatic@users.noreply.github.com>2025-01-27 19:26:14 -0500
commit901bc51f40b875338e5c7552ffd2b58e0cdaae83 (patch)
tree5e9e915efd96e4253286624b33ee4ebe47f35ab9 /include/DynamicLink.h
parent46801e0ee9dce4d085e028a83fef010c066185e3 (diff)
d_a_npc_md work
Diffstat (limited to 'include/DynamicLink.h')
-rw-r--r--include/DynamicLink.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/DynamicLink.h b/include/DynamicLink.h
index dd531826..0433926e 100644
--- a/include/DynamicLink.h
+++ b/include/DynamicLink.h
@@ -18,7 +18,8 @@ struct DynamicModuleControlBase {
virtual const char* getModuleName() const { return NULL; }
virtual int getModuleSize() const { return 0; }
virtual const char* getModuleTypeString() const { return "Base"; }
-#ifdef __MWERKS__
+#if __MWERKS__ && __MWERKS__ < 0x4200
+ // This is illegal function overloading, but MWCC for GC allows it. MWCC for Wii does not.
virtual void dump();
#endif
static void dump();