comparison gui/ui/render.c @ 33616:4221981ad74c

Prefer playing variable $p to $l. $p is used in the Win32 GUI as well. Leave $l for legacy reasons. Revise skin documentation.
author ib
date Wed, 22 Jun 2011 13:10:23 +0000
parents 1f9a31d4f114
children f3300b0c38a9
comparison
equal deleted inserted replaced
33615:1f9a31d4f114 33616:4221981ad74c
232 case 's': 232 case 's':
233 if (guiInfo.Playing == GUI_STOP) 233 if (guiInfo.Playing == GUI_STOP)
234 av_strlcat(trbuf, "s", sizeof(trbuf)); 234 av_strlcat(trbuf, "s", sizeof(trbuf));
235 break; 235 break;
236 236
237 case 'l': 237 case 'l': // legacy
238 case 'p':
238 if (guiInfo.Playing == GUI_PLAY) 239 if (guiInfo.Playing == GUI_PLAY)
239 av_strlcat(trbuf, "p", sizeof(trbuf)); 240 av_strlcat(trbuf, "p", sizeof(trbuf));
240 break; 241 break;
241 242
242 case 'e': 243 case 'e':