Correcting save size.
This commit is contained in:
parent
710178b9cf
commit
cfe1497fbd
13
examples/fix_save.pl
Normal file
13
examples/fix_save.pl
Normal 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;
|
Loading…
Reference in New Issue
Block a user