Merge pull request #4070 from lioncash/const

SI_DeviceGBA: const correctness
This commit is contained in:
Markus Wick 2016-07-31 11:14:46 +02:00 committed by GitHub
commit a6834dc2cc
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 (!client)
if (!GetAvailableSock(client)) if (!GetAvailableSock(client))

View File

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