From aaa3634d1aa63a19870d268acec05a6ec5dda869 Mon Sep 17 00:00:00 2001 From: Ilari Liusvaara Date: Sat, 30 Nov 2013 10:40:29 +0200 Subject: [PATCH] Null core: Set the hidden flag --- src/core/rom.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/rom.cpp b/src/core/rom.cpp index 59426341..2d1b15a4 100644 --- a/src/core/rom.cpp +++ b/src/core/rom.cpp @@ -82,7 +82,7 @@ namespace .settings = {}, .core = this, }}), core_region({{"null", "(null)", 0, 0, false, {1, 60}, {0}}}), - core_sysregion("null", *this, *this) {} + core_sysregion("null", *this, *this) { hide(); } std::string c_core_identifier() { return "null core"; } bool c_set_region(core_region& reg) { return true; } std::pair c_video_rate() { return std::make_pair(60, 1); }