summaryrefslogtreecommitdiff
path: root/examples/HelloWorld
diff options
context:
space:
mode:
authorErwin Coumans <erwin.coumans@gmail.com>2015-04-16 22:23:34 -0700
committerErwin Coumans <erwin.coumans@gmail.com>2015-04-16 22:23:34 -0700
commit8ce75fd7a761aff16fab4d0a4e8952d0168b536e (patch)
tree6a2fb61bae72227c0775c19a1ba2cefd0d78714d /examples/HelloWorld
parentad8f705bcbd264c52c43693bce602f7c3ef06f08 (diff)
downloadbullet3-8ce75fd7a761aff16fab4d0a4e8952d0168b536e.tar.gz
fix mac build
Diffstat (limited to 'examples/HelloWorld')
-rw-r--r--examples/HelloWorld/HelloWorld.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/HelloWorld/HelloWorld.cpp b/examples/HelloWorld/HelloWorld.cpp
index 582b45795..f7a195746 100644
--- a/examples/HelloWorld/HelloWorld.cpp
+++ b/examples/HelloWorld/HelloWorld.cpp
@@ -16,7 +16,6 @@ subject to the following restrictions:
///-----includes_start-----
#include "btBulletDynamicsCommon.h"
#include <stdio.h>
-#include <conio.h>
/// This is a Hello World program for running a basic Bullet physics simulation
@@ -182,6 +181,6 @@ int main(int argc, char** argv)
///-----cleanup_end-----
printf("Press a key to exit\n");
- getch();
+ getchar();
}