mirror of
https://github.com/2martens/uni.git
synced 2026-05-06 11:26:25 +02:00
[ES] Removed useless code
Signed-óff-by: Jim Martens <github@2martens.de>
This commit is contained in:
@ -252,7 +252,6 @@ void setPixel(int x, int y, int value)
|
|||||||
|
|
||||||
char existingValue = screenBuffer[index];
|
char existingValue = screenBuffer[index];
|
||||||
char pixelMask = 1 << relativeRow;
|
char pixelMask = 1 << relativeRow;
|
||||||
pixelMask = 0x0 | pixelMask;
|
|
||||||
char invMask = ~ pixelMask;
|
char invMask = ~ pixelMask;
|
||||||
char newValue = pixelMask & bitValue;
|
char newValue = pixelMask & bitValue;
|
||||||
|
|
||||||
@ -286,7 +285,6 @@ int printChar(int x, int y, char value)
|
|||||||
char data = font[arrayIndex][i];
|
char data = font[arrayIndex][i];
|
||||||
for (int _x = 0; _x < 8; _x++) {
|
for (int _x = 0; _x < 8; _x++) {
|
||||||
char bitmask = 1 << _x;
|
char bitmask = 1 << _x;
|
||||||
bitmask = 0x0 | bitmask;
|
|
||||||
char pixel = bitmask & data;
|
char pixel = bitmask & data;
|
||||||
int pixelInt = 0;
|
int pixelInt = 0;
|
||||||
if (pixel != 0x0) {
|
if (pixel != 0x0) {
|
||||||
|
|||||||
Reference in New Issue
Block a user