mirror of
https://github.com/NotImplementedLife/FSPDS.git
synced 2025-06-19 01:15:34 -04:00
21 lines
338 B
C++
21 lines
338 B
C++
#include "scenes.hpp"
|
|
|
|
#include <fat.h>
|
|
#include <filesystem.h>
|
|
#include "globals.hpp"
|
|
|
|
using namespace DSC;
|
|
|
|
void DSC::init_main_scene()
|
|
{
|
|
DSC::Debug::log("NITRO = %i\n", USE_NTFS);
|
|
#if USE_NTFS==1
|
|
set_fat_inited(nitroFSInit(NULL));
|
|
#else
|
|
set_fat_inited(fatInitDefault());
|
|
#endif
|
|
|
|
DSC::__MAIN_SCENE__= gen_title_scene();
|
|
}
|
|
|