mirror of
https://github.com/yawut/SDL.git
synced 2026-09-12 11:06:49 -05:00
Date: Mon, 22 Sep 2003 23:31:54 -0700 (PDT)
From: Rob Neff
Subject: [SDL] testgl.c minor bug fix for fullscreen mode
from:
if ( strcmp(argv[1], "-fullscreen") == 0 ) {
to:
if ( strcmp(argv[i], "-fullscreen") == 0 ) {
Minor bug, but might help someone else out who is trying to pass
the command-line params -logo -fullscreen like I was! :)
This commit is contained in:
@@ -498,7 +498,7 @@ int RunGLTest( int argc, char* argv[],
|
||||
video_flags = SDL_OPENGL;
|
||||
}
|
||||
for ( i=1; argv[i]; ++i ) {
|
||||
if ( strcmp(argv[1], "-fullscreen") == 0 ) {
|
||||
if ( strcmp(argv[i], "-fullscreen") == 0 ) {
|
||||
video_flags |= SDL_FULLSCREEN;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user