Changeset 73


Ignore:
Timestamp:
Aug 11, 2020, 11:49:21 PM (4 years ago)
Author:
chronos
Message:
  • Modified: Count total score using standard power of two numbers for all tile skins.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UGame.pas

    r72 r73  
    10971097begin
    10981098  case FSkin of
    1099     tsLinear: Result := Value;
     1099    tsLinear: Result := 1 shl Value;
    11001100    tsPowerOfTwo: Result := 1 shl Value;
    1101     tsAlpha: Result := Value;
    1102     else Result := Value;
     1101    tsAlpha: Result := 1 shl Value;
     1102    tsRoman: Result := 1 shl Value;
     1103    tsBinary: Result := 1 shl Value;
     1104    else Result := 1 shl Value;
    11031105  end;
    11041106end;
Note: See TracChangeset for help on using the changeset viewer.