Changeset 44461
- Timestamp:
- 12/28/19 19:42:39 (4 years ago)
- Location:
- titan/titan
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/titan/oled.h
r44449 r44461 16 16 if(checkbox("DM900") == 1 || checkbox("DM920") == 1) 17 17 lfb1 = malloc(xres * yres * 2); 18 else if(checkbox("VUDUO4K") == 1 || checkbox("VUUNO4K") == 1 )18 else if(checkbox("VUDUO4K") == 1 || checkbox("VUUNO4K") == 1 || checkbox("VUULTIMO4K") == 1) 19 19 lfb1 = malloc(480 * 320 * 4); 20 20 else … … 61 61 } 62 62 } 63 else if(checkbox("VUDUO4K") == 1 || checkbox("VUUNO4K") == 1 )63 else if(checkbox("VUDUO4K") == 1 || checkbox("VUUNO4K") == 1 || checkbox("VUULTIMO4K") == 1) 64 64 { 65 65 ret = write(lcdfd1, buf, xres * yres * 4); … … 139 139 } 140 140 } 141 else if(checkbox("VUDUO4K") == 1 || checkbox("VUUNO4K") == 1 )141 else if(checkbox("VUDUO4K") == 1 || checkbox("VUUNO4K") == 1 || checkbox("VUULTIMO4K") == 1) 142 142 { 143 143 if(status.updatevfd == PAUSE) … … 202 202 #endif 203 203 204 if(checkbox("VUDUO4K") != 1 && checkbox("VUUNO4K") != 1 )204 if(checkbox("VUDUO4K") != 1 && checkbox("VUUNO4K") != 1 && checkbox("VUULTIMO4K") != 1) 205 205 return; //wird nicht benötigt 206 206 -
titan/titan/titan.c
r44460 r44461 595 595 //#endif 596 596 597 if(checkbox("VUDUO4K") == 1 || checkbox("VUZERO4K") == 1 || checkbox("VUUNO4K") == 1 )597 if(checkbox("VUDUO4K") == 1 || checkbox("VUZERO4K") == 1 || checkbox("VUUNO4K") == 1 || checkbox("VUULTIMO4K") == 1) 598 598 { 599 599 //Standart Service abarbeitung … … 702 702 } 703 703 704 if(checkbox("VUDUO4K") == 1 || checkbox("VUUNO4K") == 1 )704 if(checkbox("VUDUO4K") == 1 || checkbox("VUUNO4K") == 1 || checkbox("VUULTIMO4K") == 1) 705 705 initOLEDdream1(); 706 706 … … 1111 1111 else 1112 1112 ret = readscreen(getconfig("keyskin_file", NULL), 0, 0); 1113 if(checkchipset("BCM7424") == 1 || checkbox("DM7020HD") == 1 || checkbox("DM7020HDV2") == 1 || checkbox("DM900") == 1 || checkbox("DM920") == 1 || checkbox("VUDUO4K") == 1 || checkbox("VUUNO4K") == 1 ) //inihdp1113 if(checkchipset("BCM7424") == 1 || checkbox("DM7020HD") == 1 || checkbox("DM7020HDV2") == 1 || checkbox("DM900") == 1 || checkbox("DM920") == 1 || checkbox("VUDUO4K") == 1 || checkbox("VUUNO4K") == 1 || checkbox("VUULTIMO4K") == 1) //inihdp 1114 1114 { 1115 1115 if(getconfig("oledskin_path", NULL) == NULL)
Note: See TracChangeset
for help on using the changeset viewer.