Fix splitter bug

This commit is contained in:
Evan Su 2021-08-10 23:29:14 -04:00 committed by GitHub
parent 57b45d8734
commit 9f1fd48acd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -804,7 +804,7 @@ func onDrop(names []string){
}
// Open input file in read-only mode
fin,_ := os.Open(names[0])
fin,_ := os.Open(names[0]+".pcv.0")
// Use regex to test if input is a valid Picocrypt volume
tmp := make([]byte,30)