Fix misspelling.

This commit is contained in:
2023-05-05 00:42:20 +08:00
parent 0b2ea3ddbc
commit beab3d7f8b
5 changed files with 10 additions and 10 deletions

View File

@@ -86,7 +86,7 @@ namespace Cryville.Crtr {
Play();
}
catch (Exception ex) {
Game.LogException("Load/WorkerThread", "An error occured while loading the data", ex);
Game.LogException("Load/WorkerThread", "An error occurred while loading the data", ex);
Popup.CreateException(ex);
ReturnToMenu();
}
@@ -121,7 +121,7 @@ namespace Cryville.Crtr {
}
}
catch (Exception ex) {
Game.LogException("Load/Prehandle", "An error occured while prehandling the data", ex);
Game.LogException("Load/Prehandle", "An error occurred while prehandling the data", ex);
Popup.CreateException(ex);
prehandler = null;
Stop();
@@ -173,7 +173,7 @@ namespace Cryville.Crtr {
effectManager.Tick(cbus.Time);
}
catch (Exception ex) {
Game.LogException("Game", "An error occured while playing", ex);
Game.LogException("Game", "An error occurred while playing", ex);
Popup.CreateException(ex);
Stop();
}
@@ -537,7 +537,7 @@ namespace Cryville.Crtr {
}
catch (Exception ex) {
if (!logEnabled) ToggleLogs();
Game.LogException("Game", "An error occured while stopping", ex);
Game.LogException("Game", "An error occurred while stopping", ex);
Popup.CreateException(ex);
}
finally {
@@ -582,7 +582,7 @@ namespace Cryville.Crtr {
Logger.Log("main", 1, "Load/WorkerThread", "Worker thread done ({0}ms)", workerTimer.Elapsed.TotalMilliseconds);
}
catch (Exception ex) {
Game.LogException("Load/WorkerThread", "An error occured while loading the data", ex);
Game.LogException("Load/WorkerThread", "An error occurred while loading the data", ex);
threadException = ex;
}
}