From bf65559befb75666cb573fef6088815af26e4764 Mon Sep 17 00:00:00 2001 From: Wanne Date: Sat, 5 Jan 2013 15:06:21 +0000 Subject: [PATCH] - Removed HIGHSPEED_TIMER option from the ja2.ini. Highspeed timer is now always ON git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@5766 3b4a5df2-a311-0410-b5c6-a8a6f20db521 --- Standard Gaming Platform/sgp.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Standard Gaming Platform/sgp.cpp b/Standard Gaming Platform/sgp.cpp index 2c6232b3..d1465450 100644 --- a/Standard Gaming Platform/sgp.cpp +++ b/Standard Gaming Platform/sgp.cpp @@ -1699,9 +1699,10 @@ void GetRuntimeSettings( ) s_CodePage = oProps.getStringProperty(L"Ja2 Settings", L"CODE_PAGE"); #endif // USE_CODE_PAGE -// get timer/clock initialization state -SetHiSpeedClockMode( oProps.getBoolProperty("Ja2 Settings", "HIGHSPEED_TIMER", false) ? TRUE : FALSE ); - + // WANNE: Highspeed Timer always ON (no more optional in the ja2.ini) + // get timer/clock initialization state + //SetHiSpeedClockMode( oProps.getBoolProperty("Ja2 Settings", "HIGHSPEED_TIMER", false) ? TRUE : FALSE ); + SetHiSpeedClockMode( TRUE ); #endif }