summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/render.h
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2020-06-13 21:04:52 +0200
committer hap <happppp@users.noreply.github.com>2020-06-13 21:05:06 +0200
commit18bd40b8ca276f50e7fda2d1676c3c5338c009ac (patch)
tree1c19492bf0d6f27ded191773ae3d6dfd545e28f9 /src/emu/render.h
parenta3c65b6ce2b7401e24670601117d2d3d12e50840 (diff)
ui: only warn about external artwork when it wasn't loaded (nw)
Diffstat (limited to 'src/emu/render.h')
-rw-r--r--src/emu/render.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/emu/render.h b/src/emu/render.h
index ce4ea3c66df..0a59d7d894e 100644
--- a/src/emu/render.h
+++ b/src/emu/render.h
@@ -922,6 +922,7 @@ public:
render_layer_config layer_config() const { return m_layerconfig; }
layout_view *current_view() const { return m_curview; }
int view() const { return view_index(*m_curview); }
+ bool external_artwork() const { return m_external_artwork; }
bool hidden() const { return ((m_flags & RENDER_CREATE_HIDDEN) != 0); }
bool is_ui_target() const;
int index() const;
@@ -1038,6 +1039,7 @@ private:
s32 m_clear_extents[MAX_CLEAR_EXTENTS]; // array of clear extents
bool m_transform_container; // determines whether the screen container is transformed by the core renderer,
// otherwise the respective render API will handle the transformation (scale, offset)
+ bool m_external_artwork; // external artwork was loaded (driver file or override)
};