trunk/src/emu/drivenum.c
| r245701 | r245702 | |
| 134 | 134 | m_included(s_driver_count), |
| 135 | 135 | m_config(s_driver_count) |
| 136 | 136 | { |
| 137 | | memset(&m_included, 0, s_driver_count); |
| 138 | | memset(&m_config, 0, s_driver_count*sizeof(m_config[0])); |
| 137 | memset(&m_included[0], 0, s_driver_count); |
| 138 | memset(&m_config[0], 0, s_driver_count*sizeof(m_config[0])); |
| 139 | 139 | include_all(); |
| 140 | 140 | } |
| 141 | 141 | |
| r245701 | r245702 | |
| 147 | 147 | m_included(s_driver_count), |
| 148 | 148 | m_config(s_driver_count) |
| 149 | 149 | { |
| 150 | | memset(&m_included, 0, s_driver_count); |
| 151 | | memset(&m_config, 0, s_driver_count*sizeof(m_config[0])); |
| 150 | memset(&m_included[0], 0, s_driver_count); |
| 151 | memset(&m_config[0], 0, s_driver_count*sizeof(m_config[0])); |
| 152 | 152 | filter(string); |
| 153 | 153 | } |
| 154 | 154 | |
| r245701 | r245702 | |
| 160 | 160 | m_included(s_driver_count), |
| 161 | 161 | m_config(s_driver_count) |
| 162 | 162 | { |
| 163 | | memset(&m_included, 0, s_driver_count); |
| 164 | | memset(&m_config, 0, s_driver_count*sizeof(m_config[0])); |
| 163 | memset(&m_included[0], 0, s_driver_count); |
| 164 | memset(&m_config[0], 0, s_driver_count*sizeof(m_config[0])); |
| 165 | 165 | filter(driver); |
| 166 | 166 | } |
| 167 | 167 | |