mirror of
https://github.com/encounter/aurora.git
synced 2026-07-09 18:19:33 -07:00
5a23bcbd5e
* add ability to set path of card image before CARDInit * add missing func to osx/linux variant of ResolveDolphinCardPath * remove format specifiers in formatting funcs * missed some oops * refactor card loading to allow loading slot A and B if present if neither slots have card images, a slot A image will be created at the save directory this commit also changes card image names to "MemoryCardA/B.USA.raw" to fit with dolphins naming conventions (region code will always be USA unless changed in the macro, which could eventually be changed to be something in aurora config) * only remove file name from CARDSetBasePath if not a directory
9 lines
198 B
C++
9 lines
198 B
C++
#pragma once
|
|
#include <optional>
|
|
#include <string>
|
|
|
|
#include "Constants.hpp"
|
|
|
|
namespace aurora::card {
|
|
std::string ResolveDolphinCardPath(ECardSlot slot, const char* regionCode, bool isGciFolder);
|
|
} |