diff options
author | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2018-01-08 21:40:37 -0500 |
---|---|---|
committer | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2018-01-08 21:40:37 -0500 |
commit | 1c6c7da6fba8903d8eff02ac12465a4098ebca47 (patch) | |
tree | 003e1d284a2caa64f956b3bdf069d3a413724f1c /src | |
parent | 6320e688f58a63d90dcf79c2e4b2eb0d1233d399 (diff) |
nogba to nocashgba
Diffstat (limited to 'src')
-rwxr-xr-x | src/libs/libisagbprn.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libs/libisagbprn.c b/src/libs/libisagbprn.c index c066a41a0..007f90bb7 100755 --- a/src/libs/libisagbprn.c +++ b/src/libs/libisagbprn.c @@ -10,8 +10,8 @@ // for auto no$gba support, the string "no$gba" should be at this address. // except it's not, blame Martin, hence I'm letting the user deal with this nonsense. -#define NOGBAIDADDR 0x4FFFA00 -#define NOGBAPRINTADDR 0x4FFFA14 +#define NOCASHGBAIDADDR 0x4FFFA00 +#define NOCASHGBAPRINTADDR 0x4FFFA14 struct AGBPrintStruct { @@ -155,11 +155,11 @@ void AGBAssert(const char *pFile, int nLine, const char *pExpression, int nStopP } } -// nogba print function, uncomment to use +// no$gba print function, uncomment to use /* -void NOGBAPrint(const char *pBuf) +void NoCashGBAPrint(const char *pBuf) { - *(volatile u32*)NOGBAPRINTADDR = (u32)pBuf; + *(volatile u32*)NOCASHGBAPRINTADDR = (u32)pBuf; } */ |