Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
SRB2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alam Ed Arias
SRB2
Commits
610fd76e
Commit
610fd76e
authored
1 year ago
by
Alam Ed Arias
Browse files
Options
Downloads
Patches
Plain Diff
dummy: fixup warnings
parent
2bbbf7d1
No related branches found
No related tags found
No related merge requests found
Pipeline
#908
passed
1 year ago
Stage: build
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/dummy/i_system.c
+11
-4
11 additions, 4 deletions
src/dummy/i_system.c
with
11 additions
and
4 deletions
src/dummy/i_system.c
+
11
−
4
View file @
610fd76e
...
...
@@ -14,13 +14,18 @@ size_t I_GetFreeMem(size_t *total)
return
0
;
}
void
I_Sleep
(
UINT32
ms
){}
void
I_Sleep
(
UINT32
ms
)
{
(
void
)
ms
;
}
precise_t
I_GetPreciseTime
(
void
)
{
precise_t
I_GetPreciseTime
(
void
)
{
return
0
;
}
UINT64
I_GetPrecisePrecision
(
void
)
{
UINT64
I_GetPrecisePrecision
(
void
)
{
return
1000000
;
}
...
...
@@ -182,10 +187,12 @@ const char *I_ClipboardPaste(void)
size_t
I_GetRandomBytes
(
char
*
destination
,
size_t
amount
)
{
(
void
)
destination
;
(
void
)
amount
;
return
0
;
}
void
I_RegisterSysCommands
(
void
)
{}
void
I_RegisterSysCommands
(
void
){}
void
I_GetCursorPosition
(
INT32
*
x
,
INT32
*
y
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment