Changeset 24050
- Timestamp:
- 10/03/13 22:05:06 (10 years ago)
- Location:
- titan/titan
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/titan/global.h
r24035 r24050 28 28 if(strlen(text) < 13) return NULL; 29 29 30 tmpstr = ostrcat(getconfig("pluginpath", NULL), &text[13] );30 tmpstr = ostrcat(getconfig("pluginpath", NULL), &text[13], 0, 0); 31 31 if(file_exist(tmpstr) == 1) return tmpstr; 32 32 33 33 free(tmpstr); tmpstr = NULL; 34 tmpstr = ostrcat(getconfig("pluginpath1", NULL), &text[13] );34 tmpstr = ostrcat(getconfig("pluginpath1", NULL), &text[13], 0, 0); 35 35 if(file_exist(tmpstr) == 1) return tmpstr; 36 36 37 37 free(tmpstr); tmpstr = NULL; 38 tmpstr = ostrcat(getconfig("pluginpath2", NULL), &text[13] );38 tmpstr = ostrcat(getconfig("pluginpath2", NULL), &text[13], 0, 0); 39 39 if(file_exist(tmpstr) == 1) return tmpstr; 40 40 } -
titan/titan/scan.h
r24042 r24050 1133 1133 else if(fenode->feinfo->type == FE_QAM) 1134 1134 { 1135 fetunedvbc(fenode, tpnode) != 0)1135 if(fetunedvbc(fenode, tpnode) != 0) 1136 1136 { 1137 1137 scaninfo.tpcount++; -
titan/titan/skinadjust.h
r23994 r24050 17 17 struct skin* listboxselect = getscreennode(skinadjust, "listboxselect"); 18 18 struct skin* tmp = NULL; 19 char* ret = NULL;20 19 21 20 changeinput(fontsizeadjust, "0\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n-15\n-14\n-13\n-12\n-11\n-10\n-9\n-8\n-7\n-6\n-5\n-4\n-3\n-2\n-1");
Note: See TracChangeset
for help on using the changeset viewer.