mirror of
https://github.com/coderkei/akmenu-next.git
synced 2025-06-19 01:15:32 -04:00

- VRAM Fix in nds-bootloader, should fix garbled graphics in Giana Sisters DS - System Dir changed from _nds to _nds/akmenunext, this is a breaking change. Its intended so users using TWL++ alongside have less clutter. - Added support for "saves" folders now. Its a setting that can be toggled.
22 lines
444 B
C++
22 lines
444 B
C++
/*
|
|
romlauncher.h
|
|
Copyright (C) 2010 yellow wood goblin
|
|
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "dsrom.h"
|
|
|
|
enum TLaunchResult {
|
|
ELaunchRomOk,
|
|
ELaunchSDOnly,
|
|
ELaunchRestoreFail,
|
|
ELaunchSlowSD,
|
|
ELaunchNoFreeSpace
|
|
};
|
|
|
|
TLaunchResult launchRom(const std::string& aFullPath, DSRomInfo& aRomInfo, bool aMenu, const std::string& savesPath);
|
|
void autoLaunchRom(const std::string& aFullPath);
|