MainWindow: Fix typo in resource pack initialization error message
occured -> occurred
This commit is contained in:
parent
75b68c9e96
commit
47b40698bb
|
@ -255,8 +255,10 @@ MainWindow::MainWindow(std::unique_ptr<BootParameters> boot_parameters,
|
||||||
Settings::Instance().RefreshWidgetVisibility();
|
Settings::Instance().RefreshWidgetVisibility();
|
||||||
|
|
||||||
if (!ResourcePack::Init())
|
if (!ResourcePack::Init())
|
||||||
|
{
|
||||||
ModalMessageBox::critical(this, tr("Error"),
|
ModalMessageBox::critical(this, tr("Error"),
|
||||||
tr("Error occured while loading some texture packs"));
|
tr("Error occurred while loading some texture packs"));
|
||||||
|
}
|
||||||
|
|
||||||
for (auto& pack : ResourcePack::GetPacks())
|
for (auto& pack : ResourcePack::GetPacks())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue