diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-05-09 14:29:32 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-05-09 14:29:32 -0700 |
commit | 4f2bcd9fd10c4f0d8fd8bad5b50a1199ed719e10 (patch) | |
tree | fd12663700085d4dab1166284d56ae297a4920f5 | |
parent | 7822023767e83340a2ae20b76bbba674b2c4a58f (diff) |
fix box2d compilation with emscripten
-rw-r--r-- | tests/box2d/Benchmark.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/box2d/Benchmark.cpp b/tests/box2d/Benchmark.cpp index 6853a3dc..0db1d4be 100644 --- a/tests/box2d/Benchmark.cpp +++ b/tests/box2d/Benchmark.cpp @@ -31,7 +31,7 @@ using namespace std; const int e_count = 40; -result_t measure(clock_t times[FRAMES]) { +result_t measure(clock_t *times) { float values[FRAMES]; result_t r; |