Merge pull request #8455 from Robyt3/Client-Demo-Cut-Filename-Fix

Fix wrong file extension being removed in demo cut popup
This commit is contained in:
archimede67 2024-06-05 20:06:58 +00:00 committed by GitHub
commit abc7d05fca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -830,13 +830,15 @@ void CMenus::RenderDemoPlayerSliceSavePopup(CUIRect MainView)
static CButtonContainer s_ButtonOk;
if(DoButton_Menu(&s_ButtonOk, Localize("Ok"), 0, &OkButton) || (!Ui()->IsPopupOpen() && Ui()->ConsumeHotkey(CUi::HOTKEY_ENTER)))
{
if(str_endswith(m_DemoSliceInput.GetString(), ".demo"))
{
char aNameWithoutExt[IO_MAX_PATH_LENGTH];
fs_split_file_extension(m_DemoSliceInput.GetString(), aNameWithoutExt, sizeof(aNameWithoutExt));
m_DemoSliceInput.Set(aNameWithoutExt);
}
char aDemoName[IO_MAX_PATH_LENGTH];
char aNameWithoutExt[IO_MAX_PATH_LENGTH];
DemoPlayer()->GetDemoName(aDemoName, sizeof(aDemoName));
fs_split_file_extension(m_DemoSliceInput.GetString(), aNameWithoutExt, sizeof(aNameWithoutExt));
m_DemoSliceInput.Set(aNameWithoutExt);
if(str_comp(aDemoName, m_DemoSliceInput.GetString()) == 0)
{
static CUi::SMessagePopupContext s_MessagePopupContext;