-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove localtime() uses, saving ~4-28KB from the final binary size.
- Loading branch information
1 parent
a1859e4
commit 2502dbe
Showing
2 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#include <nds.h> | ||
#include <time.h> | ||
|
||
// Stubbing out unused functionality, in order to optimize the uxnds filesize. | ||
|
||
// libfat source/filetime.c | ||
|
||
uint16_t _FAT_filetime_getTimeFromRTC (void) { | ||
return 0; | ||
} | ||
|
||
uint16_t _FAT_filetime_getDateFromRTC (void) { | ||
return 0; | ||
|
||
} | ||
time_t _FAT_filetime_to_time_t (uint16_t t, uint16_t d) { | ||
return 0; | ||
} | ||
|
||
|