This is the bug/patch tracker for Rockbox. Click here for more information.
Quick links: Bugs · Patches · Rockbox frontpage
FS#10617 - %Cl and %C conditional viewport oddity
Attached to Project:
Rockbox
Opened by Seheon Ryu (cpu98) - Friday, 25 September 2009, 17:08 GMT+2
Last edited by Jonathan Gordon (jdgordon) - Monday, 05 October 2009, 12:26 GMT+2
Opened by Seheon Ryu (cpu98) - Friday, 25 September 2009, 17:08 GMT+2
Last edited by Jonathan Gordon (jdgordon) - Monday, 05 October 2009, 12:26 GMT+2
|
Details-------------------------------
%Cl|0|38|145|145| %?C<%C%Vda|%Vdb> Viewport b is used even if AA is not present. ------------------------------- %Cl|0|38|145|145| %?C<%C%Vda|%Vdb> Viewport b is used when AA is not present.(expected behavior) Really bugged me...... |
This task depends upon
Closed by Jonathan Gordon (jdgordon)
Monday, 05 October 2009, 12:26 GMT+2
Reason for closing: Fixed
Additional comments about closing: shuold be fixed in r22944.
Monday, 05 October 2009, 12:26 GMT+2
Reason for closing: Fixed
Additional comments about closing: shuold be fixed in r22944.
%?C<%Vda|%Vdb>
Behaves as if it is given
%Cl|0|38|145|145|
%C
%V(viewport b)
Need wps file for testing?
skin_parser.c:1138: if ((wps_data->num_tokens > 1) && (prev->type == WPS_TOKEN_CONDITIONAL))
Shouldn't (wps_data->num_tokens > 1) be (wps_data->num_tokens >= 1) ?