Browse Source

fix(videomode): Added ability to store negative coordinates

reviewable/pr3556/r4
Diadlo 9 years ago
parent
commit
26a27cf3f8
No known key found for this signature in database
GPG Key ID: 5AF9F2E29107C727
  1. 4
      src/video/videomode.h

4
src/video/videomode.h

@ -25,8 +25,8 @@ @@ -25,8 +25,8 @@
struct VideoMode
{
unsigned short width, height;
unsigned short x, y;
int width, height;
int x, y;
float FPS;
uint32_t pixel_format;

Loading…
Cancel
Save