Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libSDL
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PocketInsanity
libSDL
Commits
e03c43c4
Commit
e03c43c4
authored
Jul 05, 2010
by
Sam Lantinga
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed revision type for SDL 1.3
parent
02dc648e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
testsdl.c
test/automated/testsdl.c
+2
-2
No files found.
test/automated/testsdl.c
View file @
e03c43c4
...
@@ -133,7 +133,7 @@ static void parse_options( int argc, char *argv[] )
...
@@ -133,7 +133,7 @@ static void parse_options( int argc, char *argv[] )
int
main
(
int
argc
,
char
*
argv
[]
)
int
main
(
int
argc
,
char
*
argv
[]
)
{
{
int
failed
;
int
failed
;
int
rev
;
const
char
*
rev
;
SDL_version
ver
;
SDL_version
ver
;
/* Get options. */
/* Get options. */
...
@@ -145,7 +145,7 @@ int main( int argc, char *argv[] )
...
@@ -145,7 +145,7 @@ int main( int argc, char *argv[] )
/* Print some text if verbose. */
/* Print some text if verbose. */
SDL_GetVersion
(
&
ver
);
SDL_GetVersion
(
&
ver
);
rev
=
SDL_GetRevision
();
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
);
ver
.
major
,
ver
.
minor
,
ver
.
patch
,
rev
);
/* Automatic tests. */
/* Automatic tests. */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment