mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-14 22:40:18 +00:00
DiskCacheLoadState can be null
This commit is contained in:
parent
3fe3753b0b
commit
aa26cc50ec
2 changed files with 2 additions and 2 deletions
|
@ -946,7 +946,7 @@ namespace Ryujinx.Ava
|
||||||
|
|
||||||
if (_keyboardInterface.GetKeyboardStateSnapshot().IsPressed(Key.Delete) && _parent.WindowState != WindowState.FullScreen)
|
if (_keyboardInterface.GetKeyboardStateSnapshot().IsPressed(Key.Delete) && _parent.WindowState != WindowState.FullScreen)
|
||||||
{
|
{
|
||||||
Device.Application.DiskCacheLoadState.Cancel();
|
Device.Application.DiskCacheLoadState?.Cancel();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -584,7 +584,7 @@ namespace Ryujinx.Ui
|
||||||
{
|
{
|
||||||
if (!ParentWindow.State.HasFlag(WindowState.Fullscreen))
|
if (!ParentWindow.State.HasFlag(WindowState.Fullscreen))
|
||||||
{
|
{
|
||||||
Device.Application.DiskCacheLoadState.Cancel();
|
Device.Application.DiskCacheLoadState?.Cancel();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue