From 0c4269d13d25e04cdd5d85f78d4afb6244511333 Mon Sep 17 00:00:00 2001 From: FredCooke Date: Sun, 28 Dec 2008 18:44:27 +0000 Subject: [PATCH] Change parameter name to match documentation and other code. --- src/tableLookup.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tableLookup.c b/src/tableLookup.c index f94687a..7a617ca 100644 --- a/src/tableLookup.c +++ b/src/tableLookup.c @@ -95,11 +95,11 @@ signed char lookup8Bit3D( */ * * @return The interpolated value for the location specified. */ -unsigned short lookupPagedMainTableCellValue(mainTable* Table, unsigned short realRPM, unsigned short realLoad, unsigned char RPageValue){ +unsigned short lookupPagedMainTableCellValue(mainTable* Table, unsigned short realRPM, unsigned short realLoad, unsigned char RAMPage){ /* Save the RPAGE value for restoration and switch pages. */ unsigned char oldRPage = RPAGE; - RPAGE = RPageValue; + RPAGE = RAMPage; /* Find the bounding axis values and indices for RPM */ unsigned char lowRPMIndex = 0; -- 2.11.4.GIT