Compare commits

...

2 commits

Author SHA1 Message Date
Goodfeat
d8a3c0bff1 Merge branch 'master_Tweaks' into 'master'
Added: Fix Occlusion Culling

See merge request ryubing/ryujinx!18
2025-04-20 07:02:57 -05:00
Vova
ec5df4e09d The layout of the Dirty Hacks page has been slightly corrected 2025-04-20 22:02:09 +10:00

View file

@ -33,7 +33,7 @@
<StackPanel
Margin="10"
Orientation="Vertical"
Spacing="5">
Spacing="10">
<TextBlock
HorizontalAlignment="Center"
Classes="h1"
@ -43,28 +43,30 @@
Foreground="{DynamicResource SecondaryTextColor}"
TextDecorations="Underline"
Text="Highly specific hacks &amp; tricks to alleviate performance issues, crashing, or freezing. Can cause issues." />
<Separator/>
<CheckBox IsChecked="{Binding DirtyHacks.Xc2MenuSoftlockFix}"
ToolTip.Tip="{Binding DirtyHacks.Xc2MenuFixTooltip}">
<StackPanel Orientation="Horizontal">
<TextBlock Text="Xenoblade Chronicles 2 Menu Softlock Fix" />
<TextBlock Classes="DefaultDisable" Text="Default: disable" />
</StackPanel>
</CheckBox>
<CheckBox IsChecked="{Binding DirtyHacks.NifmDisableIsAnyInternetRequestAccepted}"
ToolTip.Tip="{Binding DirtyHacks.NifmDisableIsAnyInternetRequestAcceptedTooltip}">
<StackPanel Orientation="Horizontal">
<TextBlock Text="Disable IsAnyInternetRequestAccepted" />
<TextBlock Classes="DefaultDisable" Text="Default: disable" />
</StackPanel>
</CheckBox>
<CheckBox IsChecked="{Binding DisableFixOcclusionCulling}"
ToolTip.Tip="{ext:Locale DisableFixOcclusionCullingTooltip}">
<StackPanel Orientation="Horizontal">
<TextBlock Text="{ext:Locale DisableFixOcclusionCulling}" />
<TextBlock Classes="DefaultDisable" Text="Default: disable" />
</StackPanel>
</CheckBox>
<Separator/>
<StackPanel Margin="10,0,0,0">
<CheckBox IsChecked="{Binding DirtyHacks.Xc2MenuSoftlockFix}"
ToolTip.Tip="{Binding DirtyHacks.Xc2MenuFixTooltip}">
<StackPanel Orientation="Horizontal">
<TextBlock Text="Xenoblade Chronicles 2 Menu Softlock Fix" />
<TextBlock Classes="DefaultDisable" Text="Default: disable" />
</StackPanel>
</CheckBox>
<CheckBox IsChecked="{Binding DirtyHacks.NifmDisableIsAnyInternetRequestAccepted}"
ToolTip.Tip="{Binding DirtyHacks.NifmDisableIsAnyInternetRequestAcceptedTooltip}">
<StackPanel Orientation="Horizontal">
<TextBlock Text="Disable IsAnyInternetRequestAccepted" />
<TextBlock Classes="DefaultDisable" Text="Default: disable" />
</StackPanel>
</CheckBox>
<CheckBox IsChecked="{Binding DisableFixOcclusionCulling}"
ToolTip.Tip="{ext:Locale DisableFixOcclusionCullingTooltip}">
<StackPanel Orientation="Horizontal">
<TextBlock Text="{ext:Locale DisableFixOcclusionCulling}" />
<TextBlock Classes="DefaultDisable" Text="Default: disable" />
</StackPanel>
</CheckBox>
</StackPanel>
</StackPanel>
</Border>
</ScrollViewer>