Revert "[Feature] Skin engine Themes grab text from a file %ft(file, line) WIP"

This reverts commit 62b5dfd81d.

This was accidentally merged, and wasn't up-to-date anyway.

Change-Id: I4fcceb8dc4f86762701daab72498202cabd8295a
This commit is contained in:
Solomon Peachy 2024-12-07 13:47:49 -05:00
parent 3b78daed14
commit e6851a55ed
32 changed files with 50 additions and 144 deletions

View file

@ -199,20 +199,6 @@ int main(void)
}
#endif
#if !defined(BOOTLOADER)
char buf[MAX_PATH / 2];
path_append(buf, root_realpath(),ROCKBOX_DIR"/playername.txt", sizeof(buf));
if (!file_exists(buf))
{
int fd = open(buf, O_CREAT|O_WRONLY|O_TRUNC, 0666);
if(fd >= 0)
{
fdprintf(fd, "RockBox!");
close(fd);
}
}
#endif
#ifdef AUTOROCK
{
char filename[MAX_PATH];