diff options
| author | Max <mparisi@stevens.edu> | 2020-10-31 18:10:41 -0400 |
|---|---|---|
| committer | Max <mparisi@stevens.edu> | 2020-10-31 18:10:41 -0400 |
| commit | 19716fa67dc6c35ba300304733f2269dbed59bd2 (patch) | |
| tree | eec931fccd65aa4b2f9d416c942284707bccebee | |
| parent | e5e4451cfcf8b03153fd11a620460f66b4840ba6 (diff) | |
add include to ptmf.c
| -rw-r--r-- | include/Runtime/MWCPlusLib.h | 6 | ||||
| -rw-r--r-- | src/Runtime/ptmf.c | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/include/Runtime/MWCPlusLib.h b/include/Runtime/MWCPlusLib.h index 819c0a9..f8ede23 100644 --- a/include/Runtime/MWCPlusLib.h +++ b/include/Runtime/MWCPlusLib.h @@ -1,5 +1,5 @@ -#ifndef POKEREVO_CPLUSLIB_H -#define POKEREVO_CPLUSLIB_H +#ifndef POKEREVO_MWCPLUSLIB_H +#define POKEREVO_MWCPLUSLIB_H #ifdef __cplusplus extern "C" { @@ -11,4 +11,4 @@ void __ptmf_scall(...); } #endif -#endif //POKEREVO_CPLUSLIB_H +#endif //POKEREVO_MWCPLUSLIB_H diff --git a/src/Runtime/ptmf.c b/src/Runtime/ptmf.c index c98cd63..6c8b6a8 100644 --- a/src/Runtime/ptmf.c +++ b/src/Runtime/ptmf.c @@ -1,4 +1,5 @@ #pragma internal on +#include <Runtime/MWCPlusLib.h> asm void __ptmf_scall(...) { |
