From f43a121411e5b956c54aa784d7a252cee5469b1d Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Tue, 7 Mar 2023 10:16:26 -0400 Subject: global: Remove `override` from pure virtual definitions --- include/pso/PSOV3Encryption.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/pso/PSOV3Encryption.h') diff --git a/include/pso/PSOV3Encryption.h b/include/pso/PSOV3Encryption.h index 966ff70..ae48f6b 100644 --- a/include/pso/PSOV3Encryption.h +++ b/include/pso/PSOV3Encryption.h @@ -18,10 +18,10 @@ public: class PSOV3Encryption : public PSOEncryption { public: PSOV3Encryption(); - virtual void update_stream() override; + virtual void update_stream(); virtual ~PSOV3Encryption(); - virtual void init(u32 seed) override; - virtual u32 next() override; + virtual void init(u32 seed); + virtual u32 next(); PRIVATE_MEMBER_ACCESSORS_ARRAY(u32, buffer, 522); PRIVATE_MEMBER_ACCESSORS_NON_REF(u32 *, buffer_start); -- cgit v1.2.3-13-gbd6f