Skip to content

Commit

Permalink
AGS: Add missing override keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
tag2015 committed Oct 15, 2024
1 parent fd4b1d9 commit 67eb18a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/ags/plugins/ags_flashlight/ags_flashlight.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class AGSFlashlight : public PluginBase {
const char *AGS_GetPluginName() override;
void AGS_EngineStartup(IAGSEngine *engine) override;
int64 AGS_EngineOnEvent(int event, NumberPtr data) override;
int AGS_PluginV2() const { return 1; };
int AGS_PluginV2() const override { return 1; };
};

} // namespace AGSFlashlight
Expand Down

0 comments on commit 67eb18a

Please sign in to comment.