Windower / Issues

Windower Public Issue Tracker
31 stars 21 forks source link

FrameRateDivisor resets to default 2 once in game #1076

Open sarirodord opened 3 years ago

sarirodord commented 3 years ago

Hello all,

I've enabled the config plugin & set FrameRateDivisor to 1 in the plugin's xml setting file (Windower4\plugins\settings\config.xml) & that works fine when I start the game, I can see the FPS close to 60 in the title screen & in the character selection screen, but as soon as I reach the actual game phase, the FPS goes down to the default 30. I can get it back to 60 via the in-game console, by typing //config FrameRateDivisor 1, so at least that's fine, but is there any way to make it permanent?

Many thanks!

zetaepyon commented 3 years ago

Are you using FastCS? If so, you probably need to configure that to return to 60fps instead of 30 (which is its default)

zetaepyon commented 3 years ago

Also this is the repo for Windower 5 packages, so in the future you'd want to report issues here:

https://github.com/Windower/Issues

sarirodord commented 3 years ago

Are you using FastCS? If so, you probably need to configure that to return to 60fps instead of 30 (which is its default)

No sir, the only plugins I use are config & FFXIDB. No addons whatsoever.

sarirodord commented 3 years ago

Also this is the repo for Windower 5 packages, so in the future you'd want to report issues here:

https://github.com/Windower/Issues

I didn't know that, apologies! Shall I move this ticket / create it anew under that repo?

zetaepyon commented 3 years ago

I didn't know that, apologies! Shall I move this ticket / create it anew under that repo?

Sure, probably cleaner that way

zetaepyon commented 3 years ago

Can you post your settings XML?

sarirodord commented 3 years ago

Can you post your settings XML?

The general, Windower's settings.xml, right?

<?xml version="1.0" encoding="utf-8"?>
<settings>
  <autoload>
    <plugin>Config</plugin>
    <plugin>FFXIDB</plugin>
  </autoload>
  <profile name="">
    <consolekey>Insert</consolekey>
    <uiscale>1</uiscale>
    <supersampling>2</supersampling>
    <alwaysenablegamepad>false</alwaysenablegamepad>
    <allowwinkey>true</allowwinkey>
  </profile>
</settings>
z16 commented 3 years ago

Can you show the settings XML of the Config plugin? The one you mentioned in the issue (Windower/plugins/settings/config.xml).

sarirodord commented 3 years ago

Can you show the settings XML of the Config plugin? The one you mentioned in the issue (Windower/plugins/settings/config.xml).

Sure, here it is:

<settings>
    <global>
        <!--If set to true will automatically determine the correct aspect ratio-->
        <AdjustAspectRatio>false</AdjustAspectRatio>
        <!--Explicitly define the aspect ratio (x:y resolution), will be ignored if "AdjustAspectRatio" is enabled-->
        <AspectRatio>1.77778</AspectRatio>
        <!--If set to true will automatically lock onto a target after engaging-->
        <BattleAutoTarget>true</BattleAutoTarget>
        <!--The maximum map draw distance, 1 being the game's maximum setting-->
        <ClippingPlane>5</ClippingPlane>
        <!--Only integer values, 3 being the lowest and 0 the highest-->
        <AnimationFrameRate>0</AnimationFrameRate>
        <!--If set to true will enable footstep effects (both display and sound)-->
        <FootstepEffects>true</FootstepEffects>
        <!--Time in minutes of inactivity until a disconnect, 0 to disable-->
        <AutoDisconnectTime>0</AutoDisconnectTime>
        <!--2 for 30 FPS, 1 for 60 FPS, 0 for uncapped frame rates-->
        <FrameRateDivisor>1</FrameRateDivisor>
    </global>
</settings>