Comment fix for min/max, thanks Dave.

This commit is contained in:
Martin Haye 2015-12-17 06:48:30 -08:00
parent f46aed43a6
commit a1b60a490c

View File

@ -803,7 +803,7 @@ def fatal(msg)
end
///////////////////////////////////////////////////////////////////////////////////////////////////
// Return the max of two unsigned 16-bit numbers
// Return the max of two signed 16-bit numbers
def _max(a, b)
if a < b
return b
@ -813,7 +813,7 @@ def _max(a, b)
end
///////////////////////////////////////////////////////////////////////////////////////////////////
// Return the min of two unsigned 16-bit numbers
// Return the min of two signed 16-bit numbers
def _min(a, b)
if a < b
return a