Use correct 'true' keyword

This commit is contained in:
alexey.lysiuk 2014-06-28 10:50:37 +03:00
parent e6d468eb38
commit 7b69c60af1
1 changed files with 2 additions and 2 deletions

View File

@ -303,8 +303,8 @@ int main (int argc, char **argv)
vid_defwidth = videoInfo->current_w; vid_defwidth = videoInfo->current_w;
vid_defheight = videoInfo->current_h; vid_defheight = videoInfo->current_h;
vid_defbits = videoInfo->vfmt->BitsPerPixel; vid_defbits = videoInfo->vfmt->BitsPerPixel;
vid_vsync = True; vid_vsync = true;
fullscreen = True; fullscreen = true;
} }
#endif // __APPLE__ #endif // __APPLE__