Maxx53 / NoCableLauncher

Rocksmith 2014 Launcher for playing without RealTone cable (nocable fix)
GNU General Public License v2.0
487 stars 67 forks source link

Multiplayer mode is started when Multiplayer is not enabled #53

Open ksmithfl opened 6 years ago

ksmithfl commented 6 years ago

I had to edit the Program.cs file at line 319. here is the original 319 if (settings.Multiplayer) 320 { 321 //Disable player2 record device 322 SetDeviceState(settings.GUID2, false); 323 324 //Register hotkey and press event 325 InitHotKey(); 326 }

I changed line 319 to this (added !) 319 if (!settings.Multiplayer)