1. #1

    gxResolution does nothing

    Hey all,

    /run local SetCVar("gxResolution","3440x1440"); RestartGx(); seems to do nothing at all, any ideas/suggestions? I want to swap between 3440x1440 and 1920x1440 via a macro and having no luck whatsoever. Thanks in advance!

  2. #2
    gxResolution isn't on the Legion list of cvars, which means it was probably removed.

    gxNewResolution and gxWindowedResolution are though, could try that?

  3. #3
    Quote Originally Posted by Matchu View Post
    gxResolution isn't on the Legion list of cvars, which means it was probably removed.

    gxNewResolution and gxWindowedResolution are though, could try that?
    Wow, thanks a ton - worked perfectly!

    Now I just need to figure out how to toggle between 3440x1440 and 1920x1440 within a single macro. If anyone has any suggestions they would be very appreciated

  4. #4
    Deleted
    This should work:

    Code:
    /run SetCVar("gxWindowedResolution", GetCVar("gxWindowedResolution") == "3440x1440" and "1920x1440" or "3440x1440"); RestartGx()

  5. #5
    Amazing, works perfectly. Sending you both a PM, thanks!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •