From 5ad642d27937f3259c4fae77a54a62d56b2703ea Mon Sep 17 00:00:00 2001 From: angelosa Date: Wed, 14 Feb 2024 22:05:11 +0100 Subject: video/pc_vga_oak: fix lambda capture --- src/devices/video/pc_vga_oak.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/video/pc_vga_oak.cpp b/src/devices/video/pc_vga_oak.cpp index a57d8040bc9..9a6eeff8af6 100644 --- a/src/devices/video/pc_vga_oak.cpp +++ b/src/devices/video/pc_vga_oak.cpp @@ -87,7 +87,7 @@ void oak_oti111_vga_device::oak_map(address_map &map) // win98se tests 0x06 / 0x07 / 0x0a / 0x0b paths, failing in case it doesn't find a valid value. // 64111 BIOS wants it to be == 6 at POST, printing 64107 in case it isn't map(0x00, 0x00).lr8( - NAME([this] (offs_t offset) { + NAME([] () { //machine().debug_break(); return 0x06; }) -- cgit v1.2.3