Skip to content

Commit ee6c91b

Browse files
Fix typo in set_object_pool_scaling method (#667)
1 parent 73de591 commit ee6c91b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

isobus/src/isobus_virtual_terminal_client.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1266,12 +1266,12 @@ namespace isobus
12661266

12671267
void VirtualTerminalClient::set_object_pool_scaling(std::uint8_t poolIndex,
12681268
std::uint32_t originalDataMaskDimensions_px,
1269-
std::uint32_t originalSoftKyeDesignatorHeight_px)
1269+
std::uint32_t originalSoftKeyDesignatorHeight_px)
12701270
{
12711271
// You have to call set_object_pool or register_object_pool_data_chunk_callback before calling this function
12721272
assert(poolIndex < objectPools.size());
12731273
objectPools[poolIndex].autoScaleDataMaskOriginalDimension = originalDataMaskDimensions_px;
1274-
objectPools[poolIndex].autoScaleSoftKeyDesignatorOriginalHeight = originalSoftKyeDesignatorHeight_px;
1274+
objectPools[poolIndex].autoScaleSoftKeyDesignatorOriginalHeight = originalSoftKeyDesignatorHeight_px;
12751275
}
12761276

12771277
void VirtualTerminalClient::register_object_pool_data_chunk_callback(std::uint8_t poolIndex, std::uint32_t poolTotalSize, DataChunkCallback value, std::string version)

0 commit comments

Comments
 (0)