Correcting save size.

This commit is contained in:
sergiotarxz 2023-07-23 01:00:53 +02:00
parent 710178b9cf
commit cfe1497fbd
1 changed files with 13 additions and 0 deletions

13
examples/fix_save.pl Normal file
View File

@ -0,0 +1,13 @@
#!/usr/bin/env perl
use v5.36.0;
use strict;
use warnings;
my $input_file = $ARGV[0] or die 'No input save';
open my $fh, '<', $input_file;
read $fh, my $raw_save, 128*1024;
close $fh;
open $fh, '>', $input_file;
print $fh $raw_save;
close $fh;