diff options
Diffstat (limited to 'src/emu/screen.cpp')
-rw-r--r-- | src/emu/screen.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/screen.cpp b/src/emu/screen.cpp index edfc92e62a9..2afbb31ce4c 100644 --- a/src/emu/screen.cpp +++ b/src/emu/screen.cpp @@ -764,9 +764,9 @@ void screen_device::device_start() // allocate raw textures m_texture[0] = machine().render().texture_alloc(); - m_texture[0]->set_osd_data(u64((m_unique_id << 1) | 0)); + m_texture[0]->set_id(u64(m_unique_id) << 57); m_texture[1] = machine().render().texture_alloc(); - m_texture[1]->set_osd_data(u64((m_unique_id << 1) | 1)); + m_texture[1]->set_id((u64(m_unique_id) << 57) | 1); // configure the default cliparea render_container::user_settings settings; |