agg23 / fpga-gameandwatch

Game and Watch for Analogue Pocket and MiSTer
MIT License
57 stars 2 forks source link

Skeleton Warriors not in manifest #10

Closed espiox closed 1 year ago

espiox commented 1 year ago

Ask a question

I found one other missing game! Skeleton Warriors: The Dark Crusade (Tiger) seems like it should be supported (it's just another SM510 Tiger game), but it's not in the manifest. I was able to run it when I added it manually.

agg23 commented 1 year ago

Looks like another weird dumb case in the MAME file. This time I'm not sure why it's valid CPP:

class tskelwarr_state : public hh_sm510_state
{
public:
    tskelwarr_state(const machine_config &mconfig, device_type type, const char *tag) :
        hh_sm510_state(mconfig, type, tag)
    {
        inp_fixed_last();
    }

        // This line is the problem
    void tskelwarr(machine_config &);
};