Removed code for functionality that will never be used.

This commit is contained in:
Stephen Anthony 2017-05-02 20:35:07 -02:30
parent 9416d5212c
commit f1c35ee730
1 changed files with 0 additions and 25 deletions

View File

@ -141,31 +141,6 @@ void TIADebug::saveOldState()
myOldState.coluRegs.push_back(coluPF());
myOldState.coluRegs.push_back(coluBK());
// Debug Colors
myOldState.fixedCols.clear();
if(myTIA.myFrameManager.layout() == FrameLayout::ntsc)
{
myOldState.fixedCols.push_back(myTIA.P0ColorNTSC);
myOldState.fixedCols.push_back(myTIA.M0ColorNTSC);
myOldState.fixedCols.push_back(myTIA.P1ColorNTSC);
myOldState.fixedCols.push_back(myTIA.M1ColorNTSC);
myOldState.fixedCols.push_back(myTIA.BLColorNTSC);
myOldState.fixedCols.push_back(myTIA.PFColorNTSC);
myOldState.fixedCols.push_back(myTIA.BKColorNTSC);
myOldState.fixedCols.push_back(myTIA.HBLANKColor);
}
else
{
myOldState.fixedCols.push_back(myTIA.P0ColorPAL);
myOldState.fixedCols.push_back(myTIA.M0ColorPAL);
myOldState.fixedCols.push_back(myTIA.P1ColorPAL);
myOldState.fixedCols.push_back(myTIA.M1ColorPAL);
myOldState.fixedCols.push_back(myTIA.BLColorPAL);
myOldState.fixedCols.push_back(myTIA.PFColorPAL);
myOldState.fixedCols.push_back(myTIA.BKColorPAL);
myOldState.fixedCols.push_back(myTIA.HBLANKColor);
}
// Player 0 & 1 graphics registers
myOldState.gr.clear();
myOldState.gr.push_back(myTIA.myPlayer0.getGRPNew());