From fe1947ea48463e9d2098add6ec7b12f6bd6f0395 Mon Sep 17 00:00:00 2001 From: Jonathan Li Date: Fri, 13 Jan 2017 23:29:41 +0000 Subject: [PATCH] gsdx: Fix minor user visible typos Well. it should be better; but my grammar is questionable at times, --- plugins/GSdx/GSCapture.cpp | 4 ++-- plugins/GSdx/GSCapture.h | 2 +- plugins/GSdx/GSSetting.cpp | 7 ++++--- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/plugins/GSdx/GSCapture.cpp b/plugins/GSdx/GSCapture.cpp index 8366302552..0328c02bd7 100644 --- a/plugins/GSdx/GSCapture.cpp +++ b/plugins/GSdx/GSCapture.cpp @@ -392,9 +392,9 @@ GSCapture::~GSCapture() EndCapture(); } -bool GSCapture::BeginCapture(float fps, GSVector2i recomendedResolution, float aspect) +bool GSCapture::BeginCapture(float fps, GSVector2i recommendedResolution, float aspect) { - printf("Recomended resolution: %d x %d, DAR for muxing: %.4f\n", recomendedResolution.x, recomendedResolution.y, aspect); + printf("Recommended resolution: %d x %d, DAR for muxing: %.4f\n", recommendedResolution.x, recommendedResolution.y, aspect); std::lock_guard lock(m_lock); ASSERT(fps != 0); diff --git a/plugins/GSdx/GSCapture.h b/plugins/GSdx/GSCapture.h index ad8eedd244..af82d8a9d6 100644 --- a/plugins/GSdx/GSCapture.h +++ b/plugins/GSdx/GSCapture.h @@ -53,7 +53,7 @@ public: GSCapture(); virtual ~GSCapture(); - bool BeginCapture(float fps, GSVector2i recomendedResolution, float aspect); + bool BeginCapture(float fps, GSVector2i recommendedResolution, float aspect); bool DeliverFrame(const void* bits, int pitch, bool rgba); bool EndCapture(); diff --git a/plugins/GSdx/GSSetting.cpp b/plugins/GSdx/GSSetting.cpp index ad7ae5af73..29fdfc19aa 100644 --- a/plugins/GSdx/GSSetting.cpp +++ b/plugins/GSdx/GSSetting.cpp @@ -132,7 +132,8 @@ const char* dialog_message(int ID, bool* updateText) { "Warning: it's very costly on the performance.\n\n" "Note: OpenGL HW renderer is able to handle Jak shadows at full speed without this option."; case IDC_UNSCALE_POINT_LINE: - return "Increases the width of lines at higher than native resolutions. This ensures that the lines will keep the correct proportions and prevents aliasing. Avoids empty lines on the screen in games such as Ridge Racer V, and clears FMV's obscured by a grid like Silent Hill series and Dirge of Cerberus."; + return "Increases the width of lines at higher than native resolutions. This ensures that the lines will keep the correct proportions and prevents aliasing. " + "Avoids empty lines on the screen in games such as Ridge Racer V, and clears FMVs obscured by a grid in games like the Silent Hill series and Dirge of Cerberus."; #ifdef _WIN32 // DX9 only case IDC_FBA: @@ -154,11 +155,11 @@ const char* dialog_message(int ID, bool* updateText) { case IDC_MIPMAP_HW: return "Control the accuracy level of the mipmapping emulation\n\n" "Off:\nMipmapping emulation is disabled.\n\n" - "Basic (Fast):\nPartially emulates mipmapping, performance impact is negligent at most cases.\n\n" + "Basic (Fast):\nPartially emulates mipmapping, performance impact is negligible in most cases.\n\n" "Full (Slow):\nCompletely emulates the mipmapping function of the GS, might significantly impact performance."; case IDC_FAST_TC_INV: return "By default, the texture cache handles partial invalidations. Unfortunately it is very costly to compute CPU wise." - "\n\nThis hack replaces the partial invalidation with a complete deletion of the texture to reduce the CPU load.\n\nIt helps snowblind engine game."; + "\n\nThis hack replaces the partial invalidation with a complete deletion of the texture to reduce the CPU load.\n\nIt helps snowblind engine games."; case IDC_LARGE_FB: return "Allocate a large framebuffer to be compliant with GS memory (Prevents FMV flickering).\n" "It increases GPU/memory requirements.";