mirror of
https://github.com/zeldaret/oot
synced 2026-06-20 08:13:17 -04:00
Fix the rupee count in progress.py (#1034)
* Fix the rupee count in progress.py * Use python integer division Co-authored-by: Anghelo Carvajal <angheloalf95@gmail.com> Co-authored-by: Anghelo Carvajal <angheloalf95@gmail.com>
This commit is contained in:
+1
-1
@@ -104,7 +104,7 @@ codePct = 100 * code / codeSize
|
||||
bootPct = 100 * boot / bootSize
|
||||
ovlPct = 100 * ovl / ovlSize
|
||||
|
||||
bytesPerHeartPiece = total / 80
|
||||
bytesPerHeartPiece = total // 80
|
||||
|
||||
if args.format == 'csv':
|
||||
version = 1
|
||||
|
||||
Reference in New Issue
Block a user