comparison gui/win32/widgetrender.c @ 27341:e7c989f7a7c9

Start unifying names of internal preprocessor directives. Replace all USE_ prefixes by CONFIG_ prefixes to indicate options which are configurable.
author diego
date Wed, 30 Jul 2008 12:01:30 +0000
parents 9ba6d4487292
children 9fc9d1e788aa
comparison
equal deleted inserted replaced
27340:33274ce3cce0 27341:e7c989f7a7c9
160 else if(guiIntfStruct.AudioType == 1) stringreplace(text, "$a", "m"); 160 else if(guiIntfStruct.AudioType == 1) stringreplace(text, "$a", "m");
161 else stringreplace(text, "$a", "t"); 161 else stringreplace(text, "$a", "t");
162 162
163 if(guiIntfStruct.StreamType == 0) 163 if(guiIntfStruct.StreamType == 0)
164 stringreplace(text, "$T", "f"); 164 stringreplace(text, "$T", "f");
165 #ifdef USE_DVDREAD 165 #ifdef CONFIG_DVDREAD
166 else if(guiIntfStruct.StreamType == STREAMTYPE_DVD || guiIntfStruct.StreamType == STREAMTYPE_DVDNAV) 166 else if(guiIntfStruct.StreamType == STREAMTYPE_DVD || guiIntfStruct.StreamType == STREAMTYPE_DVDNAV)
167 stringreplace(text, "$T", "d"); 167 stringreplace(text, "$T", "d");
168 #endif 168 #endif
169 else stringreplace(text, "$T", "u"); 169 else stringreplace(text, "$T", "u");
170 170