about summary refs log tree commit diff stats
path: root/src/versus.c
Commit message (Collapse)AuthorAgeFilesLines
* Modified pause and versus to use new controls function.Charadon2022-09-111-8/+3
|
* Added gamepad and keyboard support to versus modeCharadon2022-07-141-8/+19
|
* Migrated code to ANSI CCharadon2022-06-231-17/+16
|
* #6 Added pause screenCharadon2022-06-141-4/+11
|
* Revert "Revert "Revert "Revert "Revert "Added liberapay link, and more ↵Charadon2022-06-131-4/+4
| | | | | | fruitless work on the internal_clock""""" This reverts commit 0e1a3565cd077a297c07bad7466f317025758b31.
* Revert "Revert "Revert "Revert "Added liberapay link, and more fruitless ↵Charadon2022-06-131-4/+4
| | | | | | work on the internal_clock"""" This reverts commit aa7b6d5963aa4cbc33d529f91c57fb611c50a8d7.
* Revert "Revert "Revert "Added liberapay link, and more fruitless work on the ↵Charadon2022-06-131-4/+4
| | | | | | internal_clock""" This reverts commit 4b25b1e9f6cc9b1fc3f1342b32aa66f55e5135c1.
* Revert "Revert "Added liberapay link, and more fruitless work on the ↵Charadon2022-06-131-4/+4
| | | | | | internal_clock"" This reverts commit e33f20ad8e35a736996eca1f6a3a63b85a38b3d0.
* Revert "Added liberapay link, and more fruitless work on the internal_clock"Charadon2022-06-131-4/+4
| | | | This reverts commit 01f47242692c8c5c413b876610061418249e2bd6.
* Added liberapay link, and more fruitless work on the internal_clockCharadon2022-06-131-4/+4
|
* Fixed 2 bugs:Charadon2022-06-111-2/+2
| | | | | 1. Incorrectly set NextTicks on ball for versus mode. 2. Forgot a -i on array in leaderboard drawing.
* Work on leaderboardCharadon2022-06-091-5/+1
|
* Done seperating game logic from framerateCharadon2022-06-091-1/+0
|
* Cleaning up clangd's bullshitCharadon2022-06-081-1/+0
|
* Begun work on seperating movement logic from framerate of game.Charadon2022-06-081-0/+8
|
* Changed how title music was played to make it respect settingsCharadon2022-06-081-1/+1
|
* Moved to SDL threadsCharadon2022-06-071-3/+0
|
* From what I can tell, i'm finished migrating the sound code to SDLCharadon2022-06-071-7/+16
|
* QOL stuff and upped to version 0.2Charadon2022-06-021-1/+12
|
* Changed bounce sound effect and changed background colorCharadon2022-06-021-2/+2
|
* Added music and almost done marathon mode.Charadon2022-06-021-1/+8
|
* Seperated versus mode from main.cCharadon2022-06-021-0/+121
e='author Anselm R. Garbe <garbeam@wmii.de> 2006-07-10 18:35:39 +0200 committer Anselm R. Garbe <garbeam@wmii.de> 2006-07-10 18:35:39 +0200 added new stuff' href='/acidbong/suckless/dwm/commit/draw.c?h=3.0&id=8a34fa50f75f4d6d8af234ac0c4f6d40b988d700'>8a34fa5 ^
dfd84f9 ^
8a34fa5 ^

dfd84f9 ^
8a34fa5 ^

39677ec ^


8a34fa5 ^
39677ec ^
8a34fa5 ^


39677ec ^
8a34fa5 ^





39677ec ^
8a34fa5 ^






39677ec ^
8a34fa5 ^


39677ec ^


8a34fa5 ^


dfd84f9 ^
8a34fa5 ^
dfd84f9 ^
8a34fa5 ^
dfd84f9 ^
8a34fa5 ^





dfd84f9 ^
8a34fa5 ^
dfd84f9 ^






8a34fa5 ^







8a8b795 ^
8a34fa5 ^










8a8b795 ^
8a34fa5 ^





















8a8b795 ^
8a34fa5 ^







39677ec ^
8a34fa5 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172