Merge pull request #210 from jianmingyong/fix-inventory-overworld-bug

Fix the overworld rendering when inventory is opened.
This commit is contained in:
Jasper Speelman 2025-02-21 15:38:42 +01:00 committed by GitHub
commit a759fc9cb0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ Public Class NewInventoryScreen
Public Sub New(ByVal currentScreen As Screen, ByVal AllowedPages As Integer(), ByVal StartPageIndex As Integer, ByVal DoStuff As DoStuff, Optional ByVal AllowedItems As List(Of String) = Nothing, Optional ByVal DoReturnItem As Boolean = False)
SelectedItem = "-1"
_preScreenTarget = New RenderTarget2D(GraphicsDevice, windowSize.Width, windowSize.Height)
_preScreenTarget = New RenderTarget2D(GraphicsDevice, windowSize.Width, windowSize.Height, False, SurfaceFormat.Color, DepthFormat.Depth24Stencil8)
_blur = New Resources.Blur.BlurHandler(windowSize.Width, windowSize.Height)
If AllowedPages.Contains(StartPageIndex) = False Then