diff --git a/src/common/config.h b/src/common/config.h index 0fa241c6c..b341030e0 100644 --- a/src/common/config.h +++ b/src/common/config.h @@ -26,7 +26,7 @@ enum HideCursorState : int { Never, Idle, Always }; enum GpuReadbacksMode : int { Disabled, Relaxed, - Precised, + Precise, }; void load(const std::filesystem::path& path, bool is_game_specific = false); diff --git a/src/video_core/buffer_cache/region_manager.h b/src/video_core/buffer_cache/region_manager.h index 3467b6791..ecf9406af 100644 --- a/src/video_core/buffer_cache/region_manager.h +++ b/src/video_core/buffer_cache/region_manager.h @@ -95,7 +95,7 @@ public: } if constexpr (type == Type::CPU) { UpdateProtection(); - } else if (Config::getReadbacksMode() == Config::GpuReadbacksMode::Precised) { + } else if (Config::getReadbacksMode() == Config::GpuReadbacksMode::Precise) { UpdateProtection(); } }