Linux: Fixed compiler warnings

This commit is contained in:
Sour 2022-09-25 19:58:56 -04:00
parent 1df7d9aeac
commit 24529ff335
2 changed files with 4 additions and 1 deletions

View file

@ -288,6 +288,9 @@ template<TileFormat format> uint8_t PpuTools::GetTilePixelColor(const uint8_t* r
rowStart++;
}
break;
default:
break;
}
switch(format) {

View file

@ -77,7 +77,7 @@ public:
void SetProgramCounter(uint32_t addr) override;
uint32_t GetProgramCounter(bool getInstPc) override;
uint64_t GetCpuCycleCount() override;
void ResetPrevOpCode();
void ResetPrevOpCode() override;
DebuggerFeatures GetSupportedFeatures() override;