Skip to content

Commit

Permalink
i thought i pushed this oops
Browse files Browse the repository at this point in the history
  • Loading branch information
xubiod committed Oct 21, 2024
1 parent 8556b9f commit 0ea57c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/xubiod/rpgo

go 1.18
go 1.22.2
2 changes: 1 addition & 1 deletion rgssad.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ func (rpg *RGSSAD) ExtractFile(archivedFile RPGMakerArchivedFile, outputDirector

outputPath = filepath.Join(outputPath, strings.Split(archivedFile.Name, string(filepath.Separator))[len(subDirectories)])
} else {
splitted := strings.Split(archivedFile.Name, "\\")
splitted := strings.Split(archivedFile.Name, string(filepath.Separator))
filename := splitted[len(splitted)-1]

outputPath = filepath.Join(outputDirectoryPath, filename)
Expand Down

0 comments on commit 0ea57c8

Please sign in to comment.