JKSV/include/fs/save_mount.hpp
2025-06-07 15:34:28 -04:00

13 lines
341 B
C++

#pragma once
#include <string_view>
#include <switch.h>
namespace fs
{
/// @brief Default mount point used for JKSV for saves.
static constexpr std::string_view DEFAULT_SAVE_MOUNT = "save";
/// @brief Same as above, but as a root directory.
static constexpr std::string_view DEFAULT_SAVE_ROOT = "save:/";
} // namespace fs