Merge pull request #4070 from lioncash/const
SI_DeviceGBA: const correctness
This commit is contained in:
commit
a6834dc2cc
|
@ -234,7 +234,7 @@ void GBASockServer::ClockSync()
|
|||
}
|
||||
}
|
||||
|
||||
void GBASockServer::Send(u8* si_buffer)
|
||||
void GBASockServer::Send(const u8* si_buffer)
|
||||
{
|
||||
if (!client)
|
||||
if (!GetAvailableSock(client))
|
||||
|
|
|
@ -26,7 +26,7 @@ public:
|
|||
|
||||
void ClockSync();
|
||||
|
||||
void Send(u8* si_buffer);
|
||||
void Send(const u8* si_buffer);
|
||||
int Receive(u8* si_buffer);
|
||||
|
||||
private:
|
||||
|
|
Loading…
Reference in New Issue