Forcing specific numbers for emum

This commit is contained in:
SergioMartin86 2024-08-11 14:45:05 +02:00
parent 8c03af6c6f
commit dc13ff638c
1 changed files with 4 additions and 4 deletions

View File

@ -105,10 +105,10 @@ class Core : private Cpu
// APU and Joypad
enum controllerType_t
{
none_t,
joypad_t,
arkanoidNES_t,
arkanoidFamicom_t,
none_t = 0,
joypad_t = 1,
arkanoidNES_t = 2,
arkanoidFamicom_t = 3,
};
Core() : ppu(this)