shithub: pokecrystal

Download patch

ref: e27cdc43b2995e63e0d7aff5c252f1de6e799986
parent: 079afeea4626d21a179f3c836e3f1d1c9a1f6d83
author: Bryan Bishop <[email protected]>
date: Wed May 16 09:49:50 EDT 2012

make compare.sh overwrite the previous hexdump

--- a/compare.sh
+++ b/compare.sh
@@ -3,9 +3,9 @@
 
 # create baserom.txt if necessary
 if [ ! -f baserom.txt ]; then
-    hexdump -C baserom.gbc >> baserom.txt
+    hexdump -C baserom.gbc > baserom.txt
 fi
 
-hexdump -C pokecrystal.gbc >> pokecrystal.txt
+hexdump -C pokecrystal.gbc > pokecrystal.txt
 
 diff baserom.txt pokecrystal.txt | less