1
0
mirror of synced 2024-11-24 07:30:21 +01:00

Fix infinite expand

This commit is contained in:
0auBSQ 2023-01-29 03:08:53 +09:00
parent 61dfe59c8c
commit 65a3e82911

View File

@ -200,7 +200,7 @@ namespace TJAPlayer3
CTexture[] _ref = _getReferenceArray(player, eca);
CCounter[] _ctref = _getReferenceCounter(eca);
if (_ref != null &&_ref.Length > 0 && _ctref != null)
if (_ref != null && _ref.Length > 0 && _ctref != null)
{
_ctref[player] = new CCounter(0, _ref.Length - 1, 1000 / (float)_ref.Length, TJAPlayer3.Timer);
}
@ -273,6 +273,9 @@ namespace TJAPlayer3
);
}
_tex.vc拡大縮小倍率.X = 1f;
_tex.vc拡大縮小倍率.Y = 1f;
_tex.Opacity = 255;
}