mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
SI_DeviceGBA: const correctness
This commit is contained in:
@ -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))
|
||||||
|
@ -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:
|
||||||
|
Reference in New Issue
Block a user