MainWindow: Fix typo in resource pack initialization error message

occured -> occurred
This commit is contained in:
Lioncash 2021-08-24 11:10:47 -04:00
parent 75b68c9e96
commit 47b40698bb

View File

@ -255,8 +255,10 @@ MainWindow::MainWindow(std::unique_ptr<BootParameters> boot_parameters,
Settings::Instance().RefreshWidgetVisibility();
if (!ResourcePack::Init())
{
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())
{