Skip to content

Commit

Permalink
Cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpd002 committed Nov 20, 2023
1 parent 8ac6d7a commit 906c4d2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions Source/iop/Iop_SifDynamic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ CSifDynamic::CSifDynamic(CSifCmd& sifCmd, uint32 serverDataAddress)
{
}

CSifDynamic::~CSifDynamic()
{
}

bool CSifDynamic::Invoke(uint32 method, uint32* args, uint32 argsSize, uint32* ret, uint32 retSize, uint8* ram)
{
m_sifCmd.ProcessInvocation(m_serverDataAddress, method, args, argsSize);
Expand Down
2 changes: 1 addition & 1 deletion Source/iop/Iop_SifDynamic.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace Iop
{
public:
CSifDynamic(CSifCmd&, uint32);
virtual ~CSifDynamic();
virtual ~CSifDynamic() = default;
bool Invoke(uint32, uint32*, uint32, uint32*, uint32, uint8*) override;

uint32 GetServerDataAddress() const;
Expand Down

0 comments on commit 906c4d2

Please sign in to comment.