SI_DeviceGBA: const correctness

This commit is contained in:
Lioncash 2016-07-30 13:30:20 -04:00
parent be9416c462
commit 462ba0c742
2 changed files with 2 additions and 2 deletions

View File

@ -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))

View File

@ -26,7 +26,7 @@ public:
void ClockSync();
void Send(u8* si_buffer);
void Send(const u8* si_buffer);
int Receive(u8* si_buffer);
private: