Skip to content

Commit

Permalink
Actually add additions to game settings
Browse files Browse the repository at this point in the history
  • Loading branch information
zmnpl committed Dec 28, 2022
1 parent cb06f99 commit 0c75b7e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 7 additions & 0 deletions core/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,13 @@ func init() {
initGlobalSettings()
initFBNeoCoreSettings()
initFBNeoGameSettings()
initFBNeoGameSettingsAdditional()
// add additionals to ShmupArch defaults
for k, v := range AdditionalGameSettings {
if _, in := ShmupArchGameSettings[k]; !in {
ShmupArchGameSettings[k] = v
}
}
initFBNeoOverlays()
}

Expand Down
1 change: 0 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@ package main
import "github.com/zmnpl/shmuparchify/gui"

func main() {
//bubl.Run()
gui.Run()
}

0 comments on commit 0c75b7e

Please sign in to comment.