Browse Source

Fixed little bug in physac example

pull/131/head
victorfisac 9 years ago
parent
commit
1879a8129e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      examples/physics_basic_rigidbody.c

+ 1
- 1
examples/physics_basic_rigidbody.c View File

@ -29,7 +29,7 @@ int main()
int screenHeight = 450; int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [physac] example - basic rigidbody"); InitWindow(screenWidth, screenHeight, "raylib [physac] example - basic rigidbody");
o">// InitPhysics((Vector2){ 0.0f, -9.81f/2 }); // Initialize physics module
InitPhysics((Vector2){ 0.0f, -9.81f/2 }); // Initialize physics module
// Debug variables // Debug variables
bool isDebug = false; bool isDebug = false;

Loading…
Cancel
Save