Jump to content

Teknoparrot - Grid '4k' tutorial


Guest trouby

Recommended Posts

Guest trouby

let me know if this is redundant now. and il remove this video.  though i feel it can still help those of us with high end monitors 4k hdr asus and such etc..

Link to comment
Share on other sites

  • 2 years later...

if i knew, i just came here.

but not for nothing.


the lines (64 to 77) that are blocking the launch in \system\hardware_settings_restrictions.xml are :

Révélation

you can obviously see that the game launch is restricted to 640x480

    <graphics_card>
  
        <resolution>
           <!-- Minimum resolution -->
           <restrict_logical>
                <restrict_if name="width" op="int_le" value="639">
                    <restrict_set name="width" default="640" />
                    <restrict_set name="height" default="480" />
                </restrict_if>
                <restrict_if name="height" op="int_le" value="479">
                    <restrict_set name="width" default="640" />
                    <restrict_set name="height" default="480" />
                </restrict_if>
            </restrict_logical>

 

here the edited version for 4K (copy paste this)

Révélation
    <graphics_card>
  
        <resolution>
           <!-- Minimum resolution -->
           <restrict_logical>
                <restrict_if name="width" op="int_le" value="3839">
                    <restrict_set name="width" default="3840" />
                    <restrict_set name="height" default="2160" />
                </restrict_if>
                <restrict_if name="height" op="int_le" value="2159">
                    <restrict_set name="width" default="3840" />
                    <restrict_set name="height" default="2160" />
                </restrict_if>
            </restrict_logical>

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...