summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c
index 317b51c..f5be59f 100644
--- a/src/main.c
+++ b/src/main.c
@@ -7,14 +7,14 @@
int main() {
InitWindow(WINDOW_WIDTH, WINDOW_HEIGHT, "My BeatEmup");
- SetTargetFPS(60);
+ SetTargetFPS(120);
LoadAssets();
InitGame();
AddBackground("bar-background");
- AddPlayer(0, 0);
- AddWall(100, 100, 1000, 100);
+ AddPlayer(0, 400);
+ AddWall(0, 160, 1000000, 100);
while(!WindowShouldClose()) {
UpdateGame(GetFrameTime());