Changeset 10934
- Timestamp:
- 11/02/11 15:54:36 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/titan/skinselector.h
r10932 r10934 189 189 debug(10,"skin file selected: %s", selection->name); 190 190 if(selection->is_cur) break; //same file chosen again 191 tmpstr = ostrcat(selection->name, "", 0, 0); 191 192 struct splitstr* ret1 = NULL; 193 int count1 = 0; 194 char* tmpstr1 = NULL; 195 tmpstr1 = ostrcat("", selection->name, 0, 0); 196 ret1 = strsplit(tmpstr1, " ", &count1); 197 tmpstr = ostrcat((&ret1[0])->part, "", 0, 0); 198 free(ret1), ret1 = NULL; 199 free(tmpstr1), tmpstr1 = NULL; 200 192 201 tmpstr = dirname(tmpstr); 193 202 tmpstr = ostrcat(tmpstr, "/skinconfig", 1, 0);
Note: See TracChangeset
for help on using the changeset viewer.