mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-26 15:50:00 -06:00
add GetMSCount/GetUSCount to Platform. remove SDL dependency from LAN.
This commit is contained in:
@ -73,7 +73,6 @@ using namespace melonDS;
|
||||
QString* systemThemeName;
|
||||
|
||||
|
||||
|
||||
QString emuDirectory;
|
||||
|
||||
const int kMaxEmuInstances = 16;
|
||||
@ -86,6 +85,9 @@ std::optional<LibPCap> pcap;
|
||||
Net net;
|
||||
|
||||
|
||||
QElapsedTimer sysTimer;
|
||||
|
||||
|
||||
void NetInit()
|
||||
{
|
||||
Config::Table cfg = Config::GetGlobalTable();
|
||||
@ -237,6 +239,7 @@ bool MelonApplication::event(QEvent *event)
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
sysTimer.start();
|
||||
srand(time(nullptr));
|
||||
|
||||
for (int i = 0; i < kMaxEmuInstances; i++)
|
||||
|
Reference in New Issue
Block a user