AGS: Prefer to use override specifier where necessary

From upstream 0d41b5ef0e2dadf24a4618a496b43630981687ff
This commit is contained in:
Thierry Crozat 2022-06-21 22:13:53 +01:00
parent b3aed69af6
commit f70d871748

View File

@ -38,9 +38,9 @@ namespace ALSW {
class ScummVMRendererGfxFilter : public ScalingGfxFilter {
public:
virtual ~ScummVMRendererGfxFilter() {}
~ScummVMRendererGfxFilter() override {}
virtual const GfxFilterInfo &GetInfo() const;
const GfxFilterInfo &GetInfo() const override;
};
} // namespace ALSW