mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
Use osd_getenv instead of getenv (nw)
This commit is contained in:
parent
e2d58b6a16
commit
68bd81d11a
@ -889,8 +889,8 @@ void discrete_device::device_start()
|
||||
|
||||
/* enable profiling */
|
||||
m_profiling = 0;
|
||||
if (getenv("DISCRETE_PROFILING"))
|
||||
m_profiling = atoi(getenv("DISCRETE_PROFILING"));
|
||||
if (osd_getenv("DISCRETE_PROFILING"))
|
||||
m_profiling = atoi(osd_getenv("DISCRETE_PROFILING"));
|
||||
|
||||
/* Build the final block list */
|
||||
sound_block_list_t block_list;
|
||||
|
Loading…
Reference in New Issue
Block a user