summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/MainWindow.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2021-08-24 11:10:47 -0400
committerLioncash <mathew1800@gmail.com>2021-08-24 11:10:49 -0400
commit47b40698bb5ce0da3e103c197bfe0268a840596c (patch)
tree4a882404c96bc341215efcb0fbec41dbb84faaf7 /Source/Core/DolphinQt/MainWindow.cpp
parent75b68c9e96674fe4eb968f20064d384037d18d44 (diff)
MainWindow: Fix typo in resource pack initialization error message
occured -> occurred
Diffstat (limited to 'Source/Core/DolphinQt/MainWindow.cpp')
-rw-r--r--Source/Core/DolphinQt/MainWindow.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/MainWindow.cpp b/Source/Core/DolphinQt/MainWindow.cpp
index cd566b7624..b4fc3e7da4 100644
--- a/Source/Core/DolphinQt/MainWindow.cpp
+++ b/Source/Core/DolphinQt/MainWindow.cpp
@@ -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())
{