Changeset 37116 for titan/titan/mipselport.h
- Timestamp:
- 02/12/16 20:43:47 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/titan/mipselport.h
r37104 r37116 198 198 } 199 199 200 int posx = getconfigint("fbleftoffset", NULL) * 5;201 int posy = getconfigint("fbtopoffset", NULL) * 5;200 int posx = 0; 201 int posy = 0; 202 202 int width = 0; 203 203 int height = 0; … … 207 207 width = (fb->width - posx) - (getconfigint("fbrightoffset", NULL) * 5); 208 208 height = (fb->height - posy) - (getconfigint("fbbottomoffset", NULL) * 5); 209 posx = getconfigint("fbleftoffset", NULL) * 5; 210 posy = getconfigint("fbtopoffset", NULL) * 5; 209 211 } 210 212 else … … 212 214 width = (720 - posx) - (getconfigint("fbrightoffset", NULL)); 213 215 height = (576 - posy) - (getconfigint("fbbottomoffset", NULL)); 216 posx = getconfigint("fbleftoffset", NULL); 217 posy = getconfigint("fbtopoffset", NULL); 214 218 } 215 219 … … 281 285 282 286 if((dst_width + dst_left) > width) 283 dst_ left = dst_left - 1;284 287 dst_width = dst_width - dst_left; 288 285 289 if((dst_height + dst_top) > height) 286 dst_height = dst_height - 1;287 290 dst_height = dst_height - dst_top; 291 288 292 if(status.screenanim > 0) usleep(status.screenanimspeed * 1000); 289 293
Note: See TracChangeset
for help on using the changeset viewer.