From 87c8fa78cb9637f03cc41392d9e486c25e2753d2 Mon Sep 17 00:00:00 2001 From: NicJA Date: Mon, 13 Mar 2017 20:14:34 +0000 Subject: [PATCH] revert mistakenly committed changes. git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@54115 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- rom/timer/timer_init.c | 4 ++-- rom/timer/timervblank.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rom/timer/timer_init.c b/rom/timer/timer_init.c index d044015e4b..c95cc2c727 100644 --- a/rom/timer/timer_init.c +++ b/rom/timer/timer_init.c @@ -50,8 +50,8 @@ static AROS_INTH1(VBlankInt, struct TimerBase *, TimerBase) * Now go to handle requests. * We are called at rather low rate, so don't bother and process both units. */ - handleMicroHZ(TimerBase, SysBase, FALSE); - handleVBlank(TimerBase, SysBase, FALSE); + handleMicroHZ(TimerBase, SysBase); + handleVBlank(TimerBase, SysBase); return 0; diff --git a/rom/timer/timervblank.c b/rom/timer/timervblank.c index e711d295d4..b51c9e4105 100644 --- a/rom/timer/timervblank.c +++ b/rom/timer/timervblank.c @@ -20,7 +20,7 @@ AROS_INTH1(VBlankInt, struct TimerBase *, TimerBase) /* UpdateEClock and process VBlank timer*/ EClockUpdate(TimerBase); - handleVBlank(TimerBase, SysBase, FALSE); + handleVBlank(TimerBase, SysBase); /* exec should continue with other servers */ return 0; -- 2.11.4.GIT