From b54423ca4f70223aabdab0cc0562a2ce24bbe8ff Mon Sep 17 00:00:00 2001 From: cclecle Date: Tue, 26 Aug 2025 13:43:59 +0200 Subject: [PATCH] use new IChaChaFontInfo interface hide compiler warning messages --- Classes/ChaChaFontInfo.uc | 2 +- Classes/ChaChaFontsFull.uc | 2 +- make.bat | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Classes/ChaChaFontInfo.uc b/Classes/ChaChaFontInfo.uc index 5ec88be..ba12208 100644 --- a/Classes/ChaChaFontInfo.uc +++ b/Classes/ChaChaFontInfo.uc @@ -1,4 +1,4 @@ -class ChaChaFontInfo expands FontInfo; +class ChaChaFontInfo expands IChaChaFontInfo; /******************************** diff --git a/Classes/ChaChaFontsFull.uc b/Classes/ChaChaFontsFull.uc index 5c18747..55b1a4f 100644 --- a/Classes/ChaChaFontsFull.uc +++ b/Classes/ChaChaFontsFull.uc @@ -25,7 +25,7 @@ simulated function PreBeginPlay() if(Role == ROLE_Authority) SaveConfig(); } -simulated function FontInfo Get(String requestedFont) +simulated function IChaChaFontInfo Get(String requestedFont) { switch(requestedFont) { diff --git a/make.bat b/make.bat index 2df0ac0..ed42b35 100644 --- a/make.bat +++ b/make.bat @@ -1,2 +1,2 @@ del %~dp0\..\System\ChaChaFontsV1.u -%~dp0\..\System\ucc.exe make ChaChaFontsV1 +%~dp0\..\System\ucc.exe make -Silent ChaChaFontsV1