r2dliu / dolphin

Dolphin is a GameCube / Wii emulator, allowing you to play games for these two platforms on PC with improvements.
https://dolphin-emu.org/
Other
8 stars 4 forks source link

Polling thread could be better #23

Open r2dliu opened 4 years ago

r2dliu commented 4 years ago
void SlippiUser::FileListenThread()
{
  while (runThread)
  {
    if (AttemptLogin())
    {
      runThread = false;
      break;
    }

    Common::SleepCurrentThread(500);
  }
}

:(

much cleaner to do https://doc.qt.io/qt-5/qfilesystemwatcher.html