summaryrefslogtreecommitdiff
path: root/include/pso/PSOV3Encryption.h
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2023-03-07 10:16:26 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2023-03-07 10:16:26 -0400
commitf43a121411e5b956c54aa784d7a252cee5469b1d (patch)
tree4f5f969f92d4833fc9984715679c15fa670adae4 /include/pso/PSOV3Encryption.h
parent9d7b2c5f61f2015d085afde271f791317a131a25 (diff)
global: Remove `override` from pure virtual definitions
Diffstat (limited to 'include/pso/PSOV3Encryption.h')
-rw-r--r--include/pso/PSOV3Encryption.h6
1 files changed, 3 insertions, 3 deletions
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);