akmenu-next/arm9/source/romlauncher.h
Kei e682a4252e VRAM Fix, System Dir change and saves folder support
- 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.
2025-01-25 23:29:52 +00:00

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);