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

trunk/src/mess/video/apple2.c
r241944r241945
848848   UINT8 code;
849849   UINT32 start_address = m_page2 ? 0x0800 : 0x0400;
850850   UINT32 address;
851   int fg;
851   int fg = 0;
852852
853853   switch (m_sysconfig & 0x03)
854854   {
r241944r241945
930930   UINT32 start_address = m_page2 ? 0x0800 : 0x0400;
931931   UINT32 address;
932932   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;
934934
935935   switch (m_sysconfig & 0x03)
936936   {
r241944r241945
10711071   UINT32 start_address;
10721072   UINT32 address;
10731073   UINT8 *aux_page = m_ram_ptr;
1074   int fg;
1074   int fg = 0;
10751075   int bg = 0;
10761076
10771077   if (m_80col)
r241944r241945
11311131   int row, col;
11321132   UINT32 start_address = m_page2 ? 0x800 : 0x400; 
11331133   UINT32 address;
1134   int fg;
1134   int fg = 0;
11351135   int bg = 0;
11361136
11371137   beginrow = MAX(beginrow, cliprect.min_y - (cliprect.min_y % 8));


Previous 199869 Revisions Next


© 1997-2024 The MAME Team