Skip to content

Commit

Permalink
Update AbstractOpenType.php
Browse files Browse the repository at this point in the history
  • Loading branch information
lepiaf authored Mar 1, 2021
1 parent b3d00f8 commit 98c1228
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -858,7 +858,7 @@ protected function _parseCMapTable()
if ($language != 0) {
$this->_debugLog('Type 0 cmap tables must be language-independent;'
. ' language: %d; skipping', $language);
continue;
continue 2;
}
break;

Expand All @@ -877,7 +877,7 @@ protected function _parseCMapTable()
case 0xa: // break intentionally omitted
case 0xc:
$this->_debugLog('Format: 0x%x currently unsupported; skipping', $format);
continue;
continue 2;
//$this->skipBytes(2);
//$cmapLength = $this->readUInt(4);
//$language = $this->readUInt(4);
Expand All @@ -889,7 +889,7 @@ protected function _parseCMapTable()

default:
$this->_debugLog('Unknown subtable format: 0x%x; skipping', $format);
continue;
continue 2;
}
$cmapType = $format;
break;
Expand Down

0 comments on commit 98c1228

Please sign in to comment.