Missed one spot.

This commit is contained in:
Marisa the Magician 2023-12-23 15:52:43 +01:00
parent 3fb63db927
commit 6f1b4e4f03
2 changed files with 5 additions and 5 deletions

View File

@ -1,3 +1,3 @@
[default]
KIRIN_MODVER="\cxRED STAR OF INNOCENCE\c- \cw0.1a r120 \cu(Sat 23 Dec 15:51:03 CET 2023)\c-";
KIRIN_SHORTVER="\cw0.1a r120 \cu(2023-12-23 15:51:03)\c-";
KIRIN_MODVER="\cxRED STAR OF INNOCENCE\c- \cw0.1a r121 \cu(Sat 23 Dec 15:52:43 CET 2023)\c-";
KIRIN_SHORTVER="\cw0.1a r121 \cu(2023-12-23 15:52:43)\c-";

View File

@ -29,7 +29,7 @@ Class KirinStatScreen : SWWMStatScreen
override String StatCnt( int a, int b )
{
if ( b <= 0 ) return "N/A";
return String.Format("%s \c[MiniIbukiHUD]/\c- %s \c[MiniIbukiHUD](\c-%3d%%\c[MiniIbukiHUD])",SWWMUtility.ThousandsNum(max(a,0)),SWWMUtility.ThousandsNum(b),GetPct(a,b));
return String.Format("%s \cu/\c- %s \cu(\c-%3d%%\cu)",SWWMUtility.ThousandsNum(max(a,0)),SWWMUtility.ThousandsNum(b),GetPct(a,b));
}
override String TimeStr( int secs )
@ -38,8 +38,8 @@ Class KirinStatScreen : SWWMStatScreen
int h = secs/3600;
int m = (secs/60)%60;
int s = secs%60;
if ( h ) return String.Format("%d\c[MiniIbukiHUD]:\c-%02d\c[MiniIbukiHUD]:\c-%02d",h,m,s);
if ( m ) return String.Format("%d\c[MiniIbukiHUD]:\c-%02d",m,s);
if ( h ) return String.Format("%d\cu:\c-%02d\cu:\c-%02d",h,m,s);
if ( m ) return String.Format("%d\cu:\c-%02d",m,s);
return String.Format("%d",s);
}