Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed revision type for SDL 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Jul 5, 2010
1 parent 9ef52f2 commit d1a9277
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/automated/testsdl.c
Expand Up @@ -133,7 +133,7 @@ static void parse_options( int argc, char *argv[] )
int main( int argc, char *argv[] )
{
int failed;
int rev;
const char *rev;
SDL_version ver;

/* Get options. */
Expand All @@ -145,7 +145,7 @@ int main( int argc, char *argv[] )
/* Print some text if verbose. */
SDL_GetVersion( &ver );
rev = SDL_GetRevision();
SDL_ATprintVerbose( 1, "Running tests with SDL %d.%d.%d revision %d\n",
SDL_ATprintVerbose( 1, "Running tests with SDL %d.%d.%d revision %s\n",
ver.major, ver.minor, ver.patch, rev );

/* Automatic tests. */
Expand Down

0 comments on commit d1a9277

Please sign in to comment.