GodMode9i/arm9/source/date.h
Pk11 aeb13dba29
Improve dumping menu, add metadata dumping (#128)
* Improve dumping menu, add metadata dumping

* Use `NONE` as fallback DS save instead of `UNK`

Matches GM9 for my DSTT and バトル&ゲット:ポケモンタイピングDS

* Fix metadata check for NAND save
2021-12-31 20:04:50 -07:00

19 lines
336 B
C++

#ifndef DATE_H
#define DATE_H
#include <string>
/**
* Get the current time formatted for the top bar.
* @return std::string containing the time.
*/
std::string RetTime();
/**
* Get the current time formatted as specified.
* @return std::string containing the time.
*/
std::string RetTime(const char *format);
#endif // DATE_H