mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-25 07:05:40 +00:00
work around for visual studio bug
This commit is contained in:
parent
adecec77de
commit
0376f74192
|
@ -888,7 +888,7 @@ void CReal3D::SetStepping(int stepping)
|
|||
m_asicID.clear();
|
||||
if (step == 0x10)
|
||||
{
|
||||
m_asicID =
|
||||
m_asicID = decltype(m_asicID)
|
||||
{
|
||||
{ ASIC::Mercury, 0x216c3057 },
|
||||
{ ASIC::Venus, 0x116c4057 },
|
||||
|
@ -899,7 +899,7 @@ void CReal3D::SetStepping(int stepping)
|
|||
}
|
||||
else if (step == 0x15)
|
||||
{
|
||||
m_asicID =
|
||||
m_asicID = decltype(m_asicID)
|
||||
{
|
||||
{ ASIC::Mercury, 0x316c3057 },
|
||||
{ ASIC::Venus, 0x216c4057 },
|
||||
|
@ -910,7 +910,7 @@ void CReal3D::SetStepping(int stepping)
|
|||
}
|
||||
else if (step >= 0x20)
|
||||
{
|
||||
m_asicID =
|
||||
m_asicID = decltype(m_asicID)
|
||||
{
|
||||
{ ASIC::Mercury, 0x416c3057 },
|
||||
{ ASIC::Venus, 0x316c4057 }, // skichamp @ pc=0xa89f4, this value causes 'NO DAUGHTER BOARD' message
|
||||
|
|
Loading…
Reference in a new issue