summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/i_system.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/doom/i_system.c')
-rw-r--r--apps/plugins/doom/i_system.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/plugins/doom/i_system.c b/apps/plugins/doom/i_system.c
index ad1001cf8b..8a53f21b9f 100644
--- a/apps/plugins/doom/i_system.c
+++ b/apps/plugins/doom/i_system.c
@@ -16,7 +16,10 @@
16// GNU General Public License for more details. 16// GNU General Public License for more details.
17// 17//
18// $Log$ 18// $Log$
19// Revision 1.2 2006/04/02 01:52:44 kkurbjun 19// Revision 1.3 2006/04/02 12:45:29 amiconn
20// Use TIMER_FREQ for timers in plugins. Fixes timer speed on iPod.
21//
22// Revision 1.2 2006-04-02 01:52:44 kkurbjun
20// Update adds prboom's high resolution support, also makes the scaling for platforms w/ resolution less then 320x200 much nicer. IDoom's lookup table code has been removed. Also fixed a pallete bug. Some graphic errors are present in menu and status bar. Also updates some headers and output formatting. 23// Update adds prboom's high resolution support, also makes the scaling for platforms w/ resolution less then 320x200 much nicer. IDoom's lookup table code has been removed. Also fixed a pallete bug. Some graphic errors are present in menu and status bar. Also updates some headers and output formatting.
21// 24//
22// Revision 1.1 2006-03-28 15:44:01 dave 25// Revision 1.1 2006-03-28 15:44:01 dave
@@ -84,7 +87,7 @@ int I_GetTime (void)
84void I_Init (void) 87void I_Init (void)
85{ 88{
86#if (CONFIG_CPU != PP5020) && !defined(SIMULATOR) 89#if (CONFIG_CPU != PP5020) && !defined(SIMULATOR)
87 rb->timer_register(1, NULL, CPU_FREQ/TICRATE, 1, doomtime); 90 rb->timer_register(1, NULL, TIMER_FREQ/TICRATE, 1, doomtime);
88#endif 91#endif
89 I_InitSound(); 92 I_InitSound();
90} 93}