SI_DeviceGBA: Make GBASockServer's constructor explicit

Prevents potential implicit construction scenarios involving ints.
This commit is contained in:
Lioncash 2017-03-13 14:53:47 -04:00
parent 14f261079f
commit 9f40596de5

View File

@ -21,7 +21,7 @@ void GBAConnectionWaiter_Shutdown();
class GBASockServer
{
public:
GBASockServer(int _iDeviceNumber);
explicit GBASockServer(int _iDeviceNumber);
~GBASockServer();
void Disconnect();