1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-06 01:28:57 +00:00

Changed index naming order to ensure no out-of-bounds accesses.

This commit is contained in:
Thomas Harte 2017-02-06 21:48:41 -05:00
parent ba165bb70a
commit 8f5039130c

View File

@ -113,8 +113,8 @@ class TIA {
enum class ColourIndex {
Background = 0,
PlayfieldBall,
PlayerMissile1,
PlayerMissile0
PlayerMissile0,
PlayerMissile1
};
uint8_t colour_palette_[4];