boot.config 333 B

1234567891011121314151617181920212223
  1. // Lua script to launch on boot
  2. boot_script = "core/game/boot"
  3. // Package to load on boot
  4. boot_package = "boot"
  5. window_title = "03-joypad"
  6. // Linux-only configs
  7. linux = {
  8. renderer = {
  9. resolution = [ 960 540 ]
  10. vsync = true
  11. }
  12. }
  13. // Windows-only configs
  14. windows = {
  15. renderer = {
  16. resolution = [ 960 540 ]
  17. vsync = true
  18. }
  19. }