fix: unglob all of /Build/Common

This commit is contained in:
Tropical
2026-03-06 20:31:41 -06:00
parent 77ac64d9e1
commit 277e3a1e87
416 changed files with 1750 additions and 1750 deletions

View File

@@ -60,7 +60,7 @@ HRESULT CXuiSceneInventoryCreative::OnInit( XUIMessageInit *pInitData, BOOL &bHa
initData->player->awardStat(GenericStats::openInventory(), GenericStats::param_noArgs());
// 4J JEV - Item Picker Menu
shared_ptr<SimpleContainer> creativeContainer = shared_ptr<SimpleContainer>(new SimpleContainer( 0, TabSpec::MAX_SIZE + 9 ));
std::shared_ptr<SimpleContainer> creativeContainer = std::shared_ptr<SimpleContainer>(new SimpleContainer( 0, TabSpec::MAX_SIZE + 9 ));
itemPickerMenu = new ItemPickerMenu(creativeContainer, initData->player->inventory);
// 4J JEV - InitDataAssociations.
@@ -176,7 +176,7 @@ void CXuiSceneInventoryCreative::updateTabHighlightAndText(ECreativeInventoryTab
}
m_hTabGroupA[tab].SetShow(TRUE);
wstring wsText=app.GetString(specs[tab]->m_descriptionId);
std::wstring wsText=app.GetString(specs[tab]->m_descriptionId);
m_GroupDescription.SetText(wsText.c_str());
m_GroupDescription.SetShow(TRUE);
}