| Previous | 199869 Revisions | Next |
| r19833 Wednesday 26th December, 2012 at 13:06:11 UTC by Oliver Stöneberg |
|---|
| added missing initialization of memory_share.m_next (nw) |
| [src/emu] | memory.h |
| r19832 | r19833 | |
|---|---|---|
| 729 | 729 | public: |
| 730 | 730 | // construction/destruction |
| 731 | 731 | memory_share(UINT8 width, size_t bytes, void *ptr = NULL) |
| 732 | : m_ptr(ptr), | |
| 732 | : m_next(NULL), | |
| 733 | m_ptr(ptr), | |
| 733 | 734 | m_bytes(bytes), |
| 734 | 735 | m_width(width) { } |
| 735 | 736 |
| Previous | 199869 Revisions | Next |