Make default SDK port a defined constant

This commit is contained in:
Adam Honse committed 2020-06-22 11:32:32 -05:00
1 parent 12226804f3
commit 0464fbcbe2
3 files changed
+8 -2

No files matched your search

+1 -1
View File
@@ -37,7 +37,7 @@ static void Sleep(unsigned int milliseconds)
NetworkServer::NetworkServer(std::vector<RGBController *>& control) : controllers(control)
{
port_num = 6742;
port_num = OPENRGB_SDK_PORT;
server_online = false;
}