Skip to content

Commit

Permalink
Fixed stray semicolon in adding restart event handler.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikepparks committed Jan 3, 2025
1 parent 2554f90 commit a2a568b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/addons/display.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void DisplayAddon::setup() {
gpScreen = nullptr;
updateDisplayScreen();

EventManager::getInstance().registerEventHandler(GP_EVENT_RESTART, GPEVENT_CALLBACK(this->handleSystemRestart(event);));
EventManager::getInstance().registerEventHandler(GP_EVENT_RESTART, GPEVENT_CALLBACK(this->handleSystemRestart(event)));
}

bool DisplayAddon::updateDisplayScreen() {
Expand Down

0 comments on commit a2a568b

Please sign in to comment.