GUI: doxygen

This commit is contained in:
Martin Gerhardy 2021-06-22 19:31:34 +02:00
parent 47162088a5
commit ef6e6b6451
2 changed files with 5 additions and 1 deletions

View File

@ -293,7 +293,7 @@ public:
}
bool pollEvent(Event &ev) {
if (!_artificialEventQueue.empty()) {
if (!_artificialEventQueue.empty()) {
ev = _artificialEventQueue.pop();
return true;
} else {

View File

@ -212,6 +212,10 @@ private:
bool checkGameHash(const ADGameDescription *desc);
void checkForKeyCode(const Common::Event &event);
/**
* @return false because we don't want to remap the given event again. This already happened on
* recording the event. We record the custom events already, not the raw backend events.
*/
bool allowMapping() const override { return false; }
volatile uint32 _lastMillis;