mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-26 22:40:27 +00:00
Fix cached list giving nutexb crashes
This commit is contained in:
parent
5b1ba08874
commit
6e4e50fb30
2 changed files with 3 additions and 1 deletions
Binary file not shown.
|
@ -1363,7 +1363,9 @@ namespace FirstPlugin
|
||||||
|
|
||||||
setting.SurfaceDim = surfaceDim;
|
setting.SurfaceDim = surfaceDim;
|
||||||
|
|
||||||
var ImageDataCached = Texture.TextureData;
|
var ImageDataCached = new List<List<byte[]>>();
|
||||||
|
if (Texture.TextureData != null)
|
||||||
|
ImageDataCached = Texture.TextureData;
|
||||||
|
|
||||||
switch (ext)
|
switch (ext)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue