mirror of
https://github.com/softwarejanitor/ProDOS.git
synced 2026-04-26 11:17:44 +00:00
Bug fix
This commit is contained in:
@@ -2322,8 +2322,8 @@ sub create_subdir {
|
||||
my $j = 0;
|
||||
for (my $i = $filename_start; $i < ($filename_start + 15); $i++) {
|
||||
#printf("%c", $bytes[$i]);
|
||||
if ($j < length($apple_filename)) {
|
||||
$bytes[$i] = ord(substr($apple_filename, $j++, 1));
|
||||
if ($j < length($subdirname)) {
|
||||
$bytes[$i] = ord(substr($subdirname, $j++, 1));
|
||||
} else {
|
||||
$bytes[$i] = 0x00;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user