summaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authormetaphysicsIO <103212704+metaphysicsIO@users.noreply.github.com>2023-04-27 21:03:06 -0500
committermetaphysicsIO <103212704+metaphysicsIO@users.noreply.github.com>2023-04-27 21:03:06 -0500
commit51b94820bfe2859a887154ea1ca2a57761192397 (patch)
tree410c46eef00a1dd36c263a991faf395c07a990e1 /main.cpp
parent416eb29a03fbc745bff5eab5cda6c60d799b9964 (diff)
downloadPSE-51b94820bfe2859a887154ea1ca2a57761192397.tar.gz
Added in a new subroutine to help with creating documentation.
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/main.cpp b/main.cpp
index eaca369..539293a 100644
--- a/main.cpp
+++ b/main.cpp
@@ -33,19 +33,21 @@ int main(int argc, char *argv[])
//save.modify(0x2598, 0x259E);
// TEST OPTIONS
- bool done = false;
+ bool done = true; //false;
while(!done)
done = save.select();
+ // To make things faster.
+ save.debug();
// Test the rival.
//save.modify(0x25F6, 0x25FC);
// Update the checksum.
- //save.checksum();
+ save.checksum();
// Save the new file
- //save.saveNewFile();
+ save.saveNewFile();
return 0;
}