mirror of
https://github.com/LNH-team/pico-loader.git
synced 2026-06-02 09:16:49 +02:00
platform: add support for the Stargate 3DS (#71)
This commit is contained in:
@@ -14,6 +14,7 @@
|
||||
#include "patches/platform/supercard/SuperCardLoaderPlatform.h"
|
||||
#include "patches/platform/ezp/EZPLoaderPlatform.h"
|
||||
#include "patches/platform/datel/DatelLoaderPlatform.h"
|
||||
#include "patches/platform/stargate/StargateLoaderPlatform.h"
|
||||
#include "LoaderPlatformFactory.h"
|
||||
|
||||
LoaderPlatform* LoaderPlatformFactory::CreateLoaderPlatform() const
|
||||
@@ -46,6 +47,8 @@ LoaderPlatform* LoaderPlatformFactory::CreateLoaderPlatform() const
|
||||
return new EZPLoaderPlatform();
|
||||
#elif defined(PICO_LOADER_TARGET_DATEL)
|
||||
return new DatelLoaderPlatform();
|
||||
#elif defined(PICO_LOADER_TARGET_STARGATE)
|
||||
return new StargateLoaderPlatform();
|
||||
#else
|
||||
#error "No loader platform defined"
|
||||
return nullptr;
|
||||
|
||||
Reference in New Issue
Block a user