Skip to content

Commit

Permalink
fixin time
Browse files Browse the repository at this point in the history
bugs, man
  • Loading branch information
hurricaneJoef authored Jul 11, 2020
1 parent 839ae19 commit 70c21e5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,7 @@ <h2>4. Output</h2>
<option value="vertical1bit">Vertical - 1 bit per pixel</option>
<option value="horizontal565">Horizontal - 2 bytes per pixel (565)</option>
<option value="horizontalAlpha">Horizontal - 1 bit per pixel alpha map</option>
<option value="horizontal888">Horizontal - 3 bytes per pixel (rgb888</option>
</select>
</div>
</div>
Expand Down Expand Up @@ -1272,7 +1273,9 @@ <h2>4. Output</h2>
function getType() {
if (settings.conversionFunction == ConversionFunctions.horizontal565) {
return "uint16_t";
} else {
}else if(settings.conversionFunction == ConversionFunctions.horizontal888){
return "unsigned long";
}else{
return "unsigned char";
}
}
Expand Down

0 comments on commit 70c21e5

Please sign in to comment.