summaryrefslogtreecommitdiffhomepage
path: root/src/main.c
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2024-05-12 18:06:59 -0400
committerrealtradam <[email protected]>2024-05-12 18:06:59 -0400
commitb3de05173338e83f2473976e4ad6f8331202c485 (patch)
treebc88c331f3ae8cceb6f163830b3b1b948acea8e0 /src/main.c
parent9f0296d34c948b11619887185b01f2928fbb33a5 (diff)
downloadtojam2024-b3de05173338e83f2473976e4ad6f8331202c485.tar.gz
tojam2024-b3de05173338e83f2473976e4ad6f8331202c485.zip
.
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 70663a0..48ca252 100644
--- a/src/main.c
+++ b/src/main.c
@@ -58,7 +58,7 @@ World world = {
{
.position = { 0 },
.direction = { 1, 0, 0 },
- .speed = 1.0f/30.0f,
+ .speed = 1.0f/25.0f,
.color = DARKBLUE,
.camera_mode = 1,
},
@@ -167,7 +167,7 @@ int main(void)
//----------------------------------------------------------------------------------
BeginDrawing();
- ClearBackground(DARKGRAY);
+ ClearBackground(BLACK);
BeginScissorMode(0, 0, 320/2, 240);
rlViewport(0, 0, 320/2, 240);
@@ -179,7 +179,7 @@ int main(void)
EndScissorMode();
rlViewport(0, 0, 320, 240);
- DrawRectangle((320/2)-4, 0, 2, 240, BLACK); // split screen line
+ DrawRectangle((320/2)-4, 0, 2, 240, DARKGRAY); // split screen line
// Draw cube with an applied texture
//test();