mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-29 17:19:54 -06:00
actually finish the work and hook up the LAN stuff
This commit is contained in:
@ -18,6 +18,7 @@
|
||||
|
||||
#include "MPInterface.h"
|
||||
#include "LocalMP.h"
|
||||
#include "LAN.h"
|
||||
|
||||
namespace melonDS
|
||||
{
|
||||
@ -51,6 +52,10 @@ void MPInterface::Set(MPInterfaceType type)
|
||||
Current = std::make_unique<LocalMP>();
|
||||
break;
|
||||
|
||||
case MPInterface_LAN:
|
||||
Current = std::make_unique<LAN>();
|
||||
break;
|
||||
|
||||
default:
|
||||
Current = std::make_unique<DummyMP>();
|
||||
break;
|
||||
|
Reference in New Issue
Block a user