| Previous | 199869 Revisions | Next |
| r33433 Tuesday 18th November, 2014 at 08:41:06 UTC by Oliver Stöneberg |
|---|
| fixed Visual Studio warning about potentially uninitialized value in src/mess/video/apple2.c (nw) |
| [src/mess/video] | apple2.c |
| r241944 | r241945 | |
|---|---|---|
| 848 | 848 | UINT8 code; |
| 849 | 849 | UINT32 start_address = m_page2 ? 0x0800 : 0x0400; |
| 850 | 850 | UINT32 address; |
| 851 | int fg; | |
| 851 | int fg = 0; | |
| 852 | 852 | |
| 853 | 853 | switch (m_sysconfig & 0x03) |
| 854 | 854 | { |
| r241944 | r241945 | |
| 930 | 930 | UINT32 start_address = m_page2 ? 0x0800 : 0x0400; |
| 931 | 931 | UINT32 address; |
| 932 | 932 | static const int aux_colors[16] = { 0, 2, 4, 6, 8, 0xa, 0xc, 0xe, 1, 3, 5, 7, 9, 0xb, 0xd, 0xf }; |
| 933 | int fg; | |
| 933 | int fg = 0; | |
| 934 | 934 | |
| 935 | 935 | switch (m_sysconfig & 0x03) |
| 936 | 936 | { |
| r241944 | r241945 | |
| 1071 | 1071 | UINT32 start_address; |
| 1072 | 1072 | UINT32 address; |
| 1073 | 1073 | UINT8 *aux_page = m_ram_ptr; |
| 1074 | int fg; | |
| 1074 | int fg = 0; | |
| 1075 | 1075 | int bg = 0; |
| 1076 | 1076 | |
| 1077 | 1077 | if (m_80col) |
| r241944 | r241945 | |
| 1131 | 1131 | int row, col; |
| 1132 | 1132 | UINT32 start_address = m_page2 ? 0x800 : 0x400; |
| 1133 | 1133 | UINT32 address; |
| 1134 | int fg; | |
| 1134 | int fg = 0; | |
| 1135 | 1135 | int bg = 0; |
| 1136 | 1136 | |
| 1137 | 1137 | beginrow = MAX(beginrow, cliprect.min_y - (cliprect.min_y % 8)); |
| https://github.com/mamedev/mame/commit/c2a2ebf17aa0ae47bac9124cc66fbe4c7a0b9283 |
| Previous | 199869 Revisions | Next |