mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-22 22:05:38 +00:00
Fix - cannot specify explicit initializer for arrays
This commit is contained in:
parent
94c66eea7b
commit
6d313fcf9e
|
@ -1057,6 +1057,9 @@ CReal3D::CReal3D(void)
|
||||||
fifoIdx = 0;
|
fifoIdx = 0;
|
||||||
tapState = 0;
|
tapState = 0;
|
||||||
tapIDSize = 197;
|
tapIDSize = 197;
|
||||||
|
m_vromTextureFIFO[0] = 0;
|
||||||
|
m_vromTextureFIFO[1] = 0;
|
||||||
|
m_vromTextureFIFOIdx = 0;
|
||||||
DebugLog("Built Real3D\n");
|
DebugLog("Built Real3D\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -407,8 +407,8 @@ private:
|
||||||
uint16_t *textureRAM; // 8MB of internal texture RAM
|
uint16_t *textureRAM; // 8MB of internal texture RAM
|
||||||
uint32_t *textureFIFO; // 1MB texture FIFO at 0x94000000
|
uint32_t *textureFIFO; // 1MB texture FIFO at 0x94000000
|
||||||
uint32_t fifoIdx; // index into texture FIFO
|
uint32_t fifoIdx; // index into texture FIFO
|
||||||
uint32_t m_vromTextureFIFO[2] = { 0, 0 };
|
uint32_t m_vromTextureFIFO[2];
|
||||||
uint32_t m_vromTextureFIFOIdx = 0;
|
uint32_t m_vromTextureFIFOIdx;
|
||||||
|
|
||||||
// Read-only snapshots
|
// Read-only snapshots
|
||||||
uint32_t *cullingRAMLoRO; // 4MB of culling RAM at 8C000000 [read-only snapshot]
|
uint32_t *cullingRAMLoRO; // 4MB of culling RAM at 8C000000 [read-only snapshot]
|
||||||
|
|
Loading…
Reference in a new issue