Skip to content

Commit

Permalink
Fix GPU_Init flags.
Browse files Browse the repository at this point in the history
  • Loading branch information
lipk committed Jun 27, 2014
1 parent 4ff6e0b commit 49e68b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video.cpp
Expand Up @@ -343,7 +343,7 @@ CVideo::CVideo(FAKE_TYPES type) : mode_changed_(false), bpp_(0), fake_screen_(fa

void CVideo::initSDL()
{
render_target = GPU_Init(1200, 700, SDL_INIT_VIDEO | SDL_INIT_NOPARACHUTE);
render_target = GPU_Init(1200, 700, GPU_DEFAULT_INIT_FLAGS);

if(render_target == NULL) {
ERR_DP << "Could not initialize window: " << SDL_GetError() << std::endl;
Expand Down

0 comments on commit 49e68b0

Please sign in to comment.