Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jumpNrun
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
wise2023_jumpnrun
jumpNrun
Commits
047205bd
Commit
047205bd
authored
1 year ago
by
Janos
Browse files
Options
Downloads
Plain Diff
Merge branch 'main' of git.imp.fu-berlin.de:wise2023_jumpnrun/jumpnrun
parents
b6abac5f
c3a2a8b9
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gameLoop.c
+3
-1
3 additions, 1 deletion
gameLoop.c
with
3 additions
and
1 deletion
gameLoop.c
+
3
−
1
View file @
047205bd
...
...
@@ -44,7 +44,8 @@ bool gameLoop(enum vehicle theme,SDL_Renderer* renderer) {
//used to standardize time to at least 16ms per tick
Uint32
start_time
=
SDL_GetTicks
();
while
(
SDL_PollEvent
(
&
e
))
{
bool
prevent_double_tipping
=
true
;
while
(
SDL_PollEvent
(
&
e
)
&&
prevent_double_tipping
)
{
switch
(
e
.
type
){
// if user closes window exit frees all used space
...
...
@@ -56,6 +57,7 @@ bool gameLoop(enum vehicle theme,SDL_Renderer* renderer) {
case
SDL_KEYDOWN
:
start_game
=
true
;
jump
(
e
.
key
.
keysym
.
scancode
);
prevent_double_tipping
=
false
;
break
;
default:
break
;
...
...
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