From f22851f61e7009a5358eedeb32558b8df8e4d64a Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 15 Oct 2002 12:10:50 +0000 Subject: the simulator simulates rtc now, no need for extra #ifdefs git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2654 a1c6a512-1295-4272-9138-f99709370657 --- apps/settings_menu.c | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'apps/settings_menu.c') diff --git a/apps/settings_menu.c b/apps/settings_menu.c index 7a7dceacc3..6fcd687f18 100644 --- a/apps/settings_menu.c +++ b/apps/settings_menu.c @@ -241,19 +241,6 @@ static bool timedate_set(void) timedate[4] = ((timedate[4] & 0x10) >> 4) * 10 + (timedate[4] & 0x0f); /* day */ timedate[5] = ((timedate[5] & 0x30) >> 4) * 10 + (timedate[5] & 0x0f); -#else /* SIMULATOR */ - /* hour */ - timedate[0] = 0; - /* minute */ - timedate[1] = 0; - /* second */ - timedate[2] = 0; - /* year */ - timedate[3] = 0; - /* month */ - timedate[4] = 1; - /* day */ - timedate[5] = 1; #endif result = set_time(str(LANG_TIME),timedate); -- cgit v1.2.3