From 0083c3c5f0eadbf787bdc174475fdde5abbbeeb3 Mon Sep 17 00:00:00 2001 From: Magnus Norddahl Date: Tue, 6 Dec 2016 21:41:41 +0100 Subject: [PATCH] Fix some typos --- src/r_draw_pal.cpp | 14 +++++++------- src/r_draw_pal.h | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/r_draw_pal.cpp b/src/r_draw_pal.cpp index 810192b961..0264dcbf9e 100644 --- a/src/r_draw_pal.cpp +++ b/src/r_draw_pal.cpp @@ -1836,7 +1836,7 @@ namespace swrenderer void DrawSpanPalCommand::Execute(DrawerThread *thread) { - if (thread->skipped_by_thread(_y)) + if (thread->line_skipped_by_thread(_y)) return; dsfixed_t xfrac; @@ -1900,7 +1900,7 @@ namespace swrenderer void DrawSpanMaskedPalCommand::Execute(DrawerThread *thread) { - if (thread->skipped_by_thread(_y)) + if (thread->line_skipped_by_thread(_y)) return; dsfixed_t xfrac; @@ -1965,7 +1965,7 @@ namespace swrenderer void DrawSpanTranslucentPalCommand::Execute(DrawerThread *thread) { - if (thread->skipped_by_thread(_y)) + if (thread->line_skipped_by_thread(_y)) return; dsfixed_t xfrac; @@ -2028,7 +2028,7 @@ namespace swrenderer void DrawSpanMaskedTranslucentPalCommand::Execute(DrawerThread *thread) { - if (thread->skipped_by_thread(_y)) + if (thread->line_skipped_by_thread(_y)) return; dsfixed_t xfrac; @@ -2105,7 +2105,7 @@ namespace swrenderer void DrawSpanAddClampPalCommand::Execute(DrawerThread *thread) { - if (thread->skipped_by_thread(_y)) + if (thread->line_skipped_by_thread(_y)) return; dsfixed_t xfrac; @@ -2174,7 +2174,7 @@ namespace swrenderer void DrawSpanMaskedAddClampPalCommand::Execute(DrawerThread *thread) { - if (thread->skipped_by_thread(_y)) + if (thread->line_skipped_by_thread(_y)) return; dsfixed_t xfrac; @@ -2257,7 +2257,7 @@ namespace swrenderer void FillSpanPalCommand::Execute(DrawerThread *thread) { - if (thread->skipped_by_thread(_y)) + if (thread->line_skipped_by_thread(_y)) return; memset(ylookup[_y] + _x1 + _destorg, _color, _x2 - _x1 + 1); diff --git a/src/r_draw_pal.h b/src/r_draw_pal.h index 93c24857b3..a2400d2759 100644 --- a/src/r_draw_pal.h +++ b/src/r_draw_pal.h @@ -279,7 +279,7 @@ namespace swrenderer { public: void Execute(DrawerThread *thread) override; - FString DebugInfo() override { return "FillColumnHorizPalCommand"; } + FString DebugInfo() override { return "DrawColumnHorizPalCommand"; } }; class FillColumnHorizPalCommand : public PalColumnHorizCommand