Author Topic: I can't get a high resolution  (Read 885 times)

My monitor's resolution is 1920x1080, but the highest resolution I can get is 1400x1650.

Can anyone help me?

Have you tried switching between windowed/fullscreen/bordered? Sometimes when I do that it will give me more resolution options.

Have you tried switching between windowed/fullscreen/bordered? Sometimes when I do that it will give me more resolution options.
I tried that, but this list is still limited.

list of your client mods

setRes(1920, 1080);

Temporary solution

list of your client mods
0

setRes(1920, 1080);

Temporary solution
Thanks, still would like a way to fix the list though.





Blockland does register your maximum resolution:
Code: [Select]
OpenGLDevice::setScreenMode 1400 1050 32 60 1
  safeModeOn      = 1
  fixedFrame size = 3
  caption size    = 23
  maxWindowWidth  = 1920
  maxWindowHeight = 1080
Setting screen mode to 1400x1050x32@60hz (fs)...

I also only get a max resolution of 1680x1050 if I am in normal window mode.
But once borderless or fullscreen is enabled, it gives me up to 1920x1080.


I may know a better temporary solution.
You can try setting the pref directly in the files.
Open Blockland\config\client\prefs.cs
Scroll all the way down, find the correct pref and set it like this:
Code: [Select]
$pref::Video::resolution = "1920 1080 32 60";
Can you test if it sticks after reopening the game?

Blockland does register your maximum resolution:
Code: [Select]
OpenGLDevice::setScreenMode 1400 1050 32 60 1
  safeModeOn      = 1
  fixedFrame size = 3
  caption size    = 23
  maxWindowWidth  = 1920
  maxWindowHeight = 1080
Setting screen mode to 1400x1050x32@60hz (fs)...

I also only get a max resolution of 1680x1050 if I am in normal window mode.
But once borderless or fullscreen is enabled, it gives me up to 1920x1080.


I may know a better temporary solution.
You can try setting the pref directly in the files.
Open Blockland\config\client\prefs.cs
Scroll all the way down, find the correct pref and set it like this:
Code: [Select]
$pref::Video::resolution = "1920 1080 32 60";
Can you test if it sticks after reopening the game?
Thank you, this worked.