Not logged inOpenClonk Forum
Up Topic Bugfixes

This board is threaded (i.e. has a tree structure). Please use the Reply button of the specific post you are referring to, not just any random button. If you want to reply to the topic in general, use the Post button near the top and bottom of the page.

Post Reply
In Response to Carli
My first bugfix is about the Resolution in Game and GUI.
The bug was, that there were two Resolutions: GUI and Standard-Resolution.
C4Game.cpp line 299
    int32_t iGuiResX = Min<int32_t>(Config.Graphics.GuiResX, Config.Graphics.ResX);
    int32_t iGuiResY = Min<int32_t>(Config.Graphics.GuiResY, Config.Graphics.ResY);


You have to write instead
    int32_t iGuiResX = Config.Graphics.ResX;
    int32_t iGuiResY = Config.Graphics.ResY;

Powered by mwForum 2.29.7 © 1999-2015 Markus Wichitill