Oops, used incorrect names in inptx serializable name() methods.

This commit is contained in:
Stephen Anthony 2017-02-20 21:10:24 -03:30
parent 8263eb1e7c
commit 0d86649b47
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ class LatchedInput : public Serializable
*/
bool save(Serializer& out) const override;
bool load(Serializer& in) override;
string name() const override { return "TIA_PADDLE_READER"; }
string name() const override { return "TIA_LatchedInput"; }
private:

View File

@ -44,7 +44,7 @@ class PaddleReader : public Serializable
*/
bool save(Serializer& out) const override;
bool load(Serializer& in) override;
string name() const override { return "TIA_PADDLE_READER"; }
string name() const override { return "TIA_PaddleReader"; }
private: