1
0
mirror of synced 2024-11-28 09:20:53 +01:00

Default skin 17_DanC folder

This commit is contained in:
0aubsq 2022-02-08 13:02:11 +01:00
parent 2b0b281ddb
commit f2fcf53a6f
18 changed files with 3 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 355 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 117 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -56,8 +56,8 @@ namespace TJAPlayer3
* l : "Less than" * l : "Less than"
* le : "Less or equal" * le : "Less or equal"
* e : "Equal" * e : "Equal"
* me : "More or equal" * me : "More or equal" (Default)
* m : "More than" (Default) * m : "More than"
* d : "Different" * d : "Different"
*/ */
public bool tValueRequirementMet(int val1, int val2) public bool tValueRequirementMet(int val1, int val2)
@ -77,7 +77,7 @@ namespace TJAPlayer3
case "d": case "d":
return (val1 != val2); return (val1 != val2);
default: default:
return (val1 > val2); return (val1 >= val2);
} }
} }