[rom] Use mode 0666 when writing rom file

This commit is contained in:
Zorchenhimer 2025-11-22 19:44:48 -05:00
parent 88e095f426
commit 75e0ee2ba3
Signed by: Zorchenhimer
GPG Key ID: 70A1AB767AAB9C20
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ func (sb *StudyBox) Write(filename string) error {
fmt.Println("Writing to " + filename) fmt.Println("Writing to " + filename)
return os.WriteFile(filename, raw, 0777) return os.WriteFile(filename, raw, 0666)
} }
func (sb *StudyBox) rawBytes() ([]byte, error) { func (sb *StudyBox) rawBytes() ([]byte, error) {