summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorProjectRevoTPP <projectrevotpp@hotmail.com>2018-01-08 21:42:19 -0500
committerProjectRevoTPP <projectrevotpp@hotmail.com>2018-01-08 21:42:19 -0500
commita8833519c9ccda46fe60b314f8e6624ca7388c8a (patch)
tree1aa961d43d56e4f2f99c694d780998ed9c54e88b
parenteb0635784ce23b38fb09d6ccb5dea75a3ed3ba0f (diff)
nogba to nocashgba
-rw-r--r--src/isagbprn.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/isagbprn.c b/src/isagbprn.c
index 91d5c3f08..d2a41a9db 100644
--- a/src/isagbprn.c
+++ b/src/isagbprn.c
@@ -11,8 +11,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
{
@@ -156,11 +156,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;
}
*/