Added missing }'s
This commit is contained in:
parent
b7c3d8fd10
commit
b2255d175e
1 changed files with 2 additions and 1 deletions
|
@ -331,9 +331,10 @@ global void SetClipping(int left, int top, int right, int bottom)
|
|||
left = 0;
|
||||
} else if (left >= VideoWidth) {
|
||||
left = VideoWidth - 1;
|
||||
}
|
||||
if (top < 0) {
|
||||
top = 0;
|
||||
else if (top >= VideoHeight) {
|
||||
} else if (top >= VideoHeight) {
|
||||
top = VideoHeight - 1;
|
||||
}
|
||||
if (right < 0) {
|
||||
|
|
Loading…
Add table
Reference in a new issue