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--; }