Files
amethyst/source/ctru.cpp

17 lines
285 B
C++

#include <3ds.h>
#include <amethyst/ctru.hpp>
namespace amy {
namespace ctru {
void init(unsigned int srvs) {
if (srvs & romfs) {
romfsInit();
}
if (srvs & gfx_def) {
gfxInitDefault();
}
}
ull getTime() { return osGetTime(); }
} // namespace ctru
} // namespace amy