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
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
STJr
SRB2
Merge requests
!2181
dummy: fixup warnings
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
dummy: fixup warnings
Alam/SRB2:dummy
into
master
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Alam Ed Arias
requested to merge
Alam/SRB2:dummy
into
master
1 year ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
610fd76e
1 commit,
1 year ago
1 file
+
11
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/dummy/i_system.c
+
11
−
4
Options
@@ -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
)
{
Loading