summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Bridle <ben@derelict.engineering>2024-11-22 16:06:10 +1300
committerBen Bridle <ben@derelict.engineering>2024-11-22 16:16:22 +1300
commitc488e189637d72227b3c19ecbed1fc4a2a2e5439 (patch)
tree71b542e917abe63dbd216efa5829b0858c6caa86
parent6e5c09d0cca936c4cd16620adfee7462f5e8a270 (diff)
downloadbedrock-nds-c488e189637d72227b3c19ecbed1fc4a2a2e5439.zip
Prevent overzealous resetting of Bedrock instances
A Bedrock instance contains some data which should not be erased, such as the buffer contents for the system name and system author ports, and the identifier for the memory device. This has been stubbed out for now, since it isn't yet needed.
-rw-r--r--arm9/source/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arm9/source/core.c b/arm9/source/core.c
index d792360..7584296 100644
--- a/arm9/source/core.c
+++ b/arm9/source/core.c
@@ -5,7 +5,7 @@
void reset_br(Bedrock *br) {
- *br = (Bedrock) {0};
+ // TODO
}
// Load a program into an instance.