Implement getFps hc function
This commit is contained in:
@@ -21,6 +21,7 @@ class HC_GLOBAL HydraCore final : public hydra::IBase, public hydra::IOpenGlRend
|
||||
|
||||
// IFrontendDriven
|
||||
void runFrame() override;
|
||||
uint16_t getFps() override;
|
||||
|
||||
// IInput
|
||||
void setPollInputCallback(void (*callback)()) override;
|
||||
@@ -69,10 +70,13 @@ void HydraCore::runFrame() {
|
||||
int y = !!checkButtonCallback(0, hydra::ButtonType::Analog1Up) - !!checkButtonCallback(0, hydra::ButtonType::Analog1Down);
|
||||
hid.setCirclepadX(x * 0x9C);
|
||||
hid.setCirclepadY(y * 0x9C);
|
||||
hid.updateInputs(emulator->getTicks());
|
||||
|
||||
emulator->runFrame();
|
||||
}
|
||||
|
||||
uint16_t HydraCore::getFps() { return 60; }
|
||||
|
||||
void HydraCore::reset() { emulator->reset(Emulator::ReloadOption::Reload); }
|
||||
|
||||
hydra::Size HydraCore::getNativeSize() { return {400, 480}; }
|
||||
|
||||
Reference in New Issue
Block a user