From 13ef9a834c45355ba70fb029c54170e44b54cb76 Mon Sep 17 00:00:00 2001 From: Magnus Norddahl Date: Thu, 30 Jun 2016 13:56:53 +0200 Subject: [PATCH] Compile fix for gcc/clang --- src/r_draw_rgba.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/r_draw_rgba.h b/src/r_draw_rgba.h index 96e96530c5..c976602f62 100644 --- a/src/r_draw_rgba.h +++ b/src/r_draw_rgba.h @@ -296,7 +296,7 @@ class DrawerBlendCommand : public CommandType public: void Execute(DrawerThread *thread) override { - LoopIterator loop(this, thread); + typename CommandType::LoopIterator loop(this, thread); if (!loop) return; BlendMode blend(*this, loop); do