| Previous | 199869 Revisions | Next |
| r36302 Saturday 7th March, 2015 at 08:32:27 UTC by Osso |
|---|
| pc080sn.c: initialized some variables, attempt at fixing jumping regression. (nw) Tafoid, can you check if this fixes it? If it does, can't explain why this started mattering only after 0.159 |
| [src/mame/video] | pc080sn.c |
| r244813 | r244814 | |
|---|---|---|
| 59 | 59 | m_dblwidth(0), |
| 60 | 60 | m_gfxdecode(*this), |
| 61 | 61 | m_palette(*this) |
| 62 | //m_bg_ram[0](NULL), | |
| 63 | //m_bg_ram[1](NULL), | |
| 64 | //m_bgscroll_ram[0](NULL), | |
| 65 | //m_bgscroll_ram[1](NULL) | |
| 66 | 62 | { |
| 63 | for (int i = 0; i < 8; i++) | |
| 64 | m_ctrl[i] = 0; | |
| 65 | ||
| 66 | for (int i = 0; i < 2; i++) | |
| 67 | { | |
| 68 | m_bg_ram[i] = NULL; | |
| 69 | m_bgscroll_ram[i] = NULL; | |
| 70 | m_bgscrollx[i] = 0; | |
| 71 | m_bgscrolly[i] = 0; | |
| 72 | } | |
| 67 | 73 | } |
| 68 | 74 | |
| 69 | 75 | //------------------------------------------------- |
| https://github.com/mamedev/mame/commit/7d9b76ee955a657fc9a4eef71907d4c921155212 |
| Previous | 199869 Revisions | Next |