From 270a21ebaeda3386cae91c8e8f699eab8a4b182a Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Tue, 16 Apr 2024 12:19:58 +0900 Subject: [PATCH] Fix typo in System.cpp Enfore -> Enforce --- rpcs3/Emu/System.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/System.cpp b/rpcs3/Emu/System.cpp index b02f7be0fa..10662f659e 100644 --- a/rpcs3/Emu/System.cpp +++ b/rpcs3/Emu/System.cpp @@ -3362,7 +3362,7 @@ void Emulator::Kill(bool allow_autoexit, bool savestate, savestate_stage* save_s { if (fs::file tty_read_fd{fs::get_cache_dir() + "TTY.log"}) { - // Enfore an arbitrary limit for now to avoid OOM in case the guest code has bombarded TTY + // Enforce an arbitrary limit for now to avoid OOM in case the guest code has bombarded TTY // 3MB, this should be enough constexpr usz c_max_tty_spill_size = 0x30'0000;