diff options
author | easyaspi314 (Devin) <easyaspi314@users.noreply.github.com> | 2019-08-25 21:06:57 -0400 |
---|---|---|
committer | easyaspi314 (Devin) <easyaspi314@users.noreply.github.com> | 2019-08-25 21:06:57 -0400 |
commit | b19c77d1c9ec659a331e29f38b157891364d93ec (patch) | |
tree | ec8865bbfb01f96e9992b43cd069b3998b050e74 | |
parent | f97cff87488258fd4b9af45beffeb173820b138d (diff) |
Replace asm("") with ++ --.
agbcc is weird
-rw-r--r-- | src/debug/start_menu_debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug/start_menu_debug.c b/src/debug/start_menu_debug.c index 0520e7118..c0d6a3c76 100644 --- a/src/debug/start_menu_debug.c +++ b/src/debug/start_menu_debug.c @@ -1400,7 +1400,7 @@ void DebugMenu_ConvertBuildDate(const char *buildDateStr, u8 *out) // Prevents register allocation swap // Intended: r7 = out, r6 = gDebugBuildDate->numDigits // Observed: r6 = out, r7 = gDebugBuildDate->numDigits - asm(""); + ++out; --out; gDebugBuildDate = gDebugBuildDateInfo; *out++ = CHAR_SPACE; |