summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorProjectRevoTPP <projectrevotpp@hotmail.com>2018-01-08 21:39:07 -0500
committerProjectRevoTPP <projectrevotpp@hotmail.com>2018-01-08 21:39:07 -0500
commitba1eb6d952bfbeacd9345629997b3bdc18befde3 (patch)
tree12d23a7ec697b6fdea957f15b292a3e6f70d3fb1 /src
parentd215fcc78ea590ed897f83f5d1b3855e0f99fc51 (diff)
nogba to nocashgba
Diffstat (limited to 'src')
-rwxr-xr-xsrc/libisagbprn.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libisagbprn.c b/src/libisagbprn.c
index c066a41a0..007f90bb7 100755
--- a/src/libisagbprn.c
+++ b/src/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;
}
*/