From 80a5e7f43fb488b19525f848410c1929e9b7c342 Mon Sep 17 00:00:00 2001 From: arbee Date: Fri, 4 Jan 2019 07:49:05 -0500 Subject: [PATCH] mips1: fix Clang compile (nw) --- src/devices/cpu/mips/mips1.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/cpu/mips/mips1.cpp b/src/devices/cpu/mips/mips1.cpp index 510dcfb0747..afcf8d13d92 100644 --- a/src/devices/cpu/mips/mips1.cpp +++ b/src/devices/cpu/mips/mips1.cpp @@ -722,7 +722,7 @@ void mips1core_device_base::execute_run() length = 4095; while (length) { - load(ptr, [this](char c) { printf("%c", c); }); + load(ptr, [](char c) { printf("%c", c); }); ptr++; length--; }