Dyson Sphere Program – How to Run the Game in 30 FPS (or Any Other Value)

How to run the game in 30fps or any other value not offered by the Settings menu.

Guide to Run the Game in 30 FPS

All credit goes to qcs2017!

General Idea

The game can run in virtually any fps (if your computer can do that), without the use of your GPU manufacturer’s external tools. It’s just that the settings menu is limited to only a few values, the lowest one is 60. To make your game run in for example 30 fps, you have to edit the options file.

The Options file is located at:

  • My DocumentsDyson Sphere Programoptions.dso

This file is unfortunately a binary file, and not a text file, and can not be edited in a text editor.

You will need to use a Hex editor for that.

The value you want to change is on position 0x12 or 18d, and it is the literal value of the fps setting (so, if you set it to 60, that byte contains 0x3c or 60d).

To set 30fps, change that value to 0x18 or 30d.

Due to the way the game handles the settings, everytime you change any setting in the Settings menu, the fps value is set back to a default value (because at this point, the game simply does not support the 30fps). So, everytime you change a setting, you need to exit the game and change that fps value in the config file back to your choice.

Linux/Proton/SteamPlay

In Linux/Proton/SteamPlay, the complete path of the options file is:

  • ~/.local/share/Steam/steamapps/compatdata/1366540/pfx/drive_c/users/steamuser/My Documents/Dyson Sphere Program/options.dso

You can use the following one-liner to easily change that value everytime you need without using a manual Hex editor. It’s extremely likely that your distribution already supports it without need to install anything.

printf ‘x1e’ | dd of=~/.local/share/Steam/steamapps/compatdata/1366540/pfx/drive_c/users/steamuser/My Documents/Dyson Sphere Program/options.dso bs=1 seek=18 count=1 conv=notrunc

Volodymyr Azimoff
About Volodymyr Azimoff 13922 Articles
I love games and I live games. Video games are my passion, my hobby and my job. My experience with games started back in 1994 with the Metal Mutant game on ZX Spectrum computer. And since then, I’ve been playing on anything from consoles, to mobile devices. My first official job in the game industry started back in 2005, and I'm still doing what I love to do.

Be the first to comment

Leave a Reply

Your email address will not be published.


*