mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-13 04:39:36 +00: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:
parent
d241bfb7ec
commit
f68ac1d193
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue