diff --git a/examples/core_input_mouse_wheel.c b/examples/core_input_mouse_wheel.c index 97c8c96..84350f0 100644 --- a/examples/core_input_mouse_wheel.c +++ b/examples/core_input_mouse_wheel.c @@ -37,7 +37,7 @@ void GameFrame() DrawRectangle(screenWidth/2 - 40, boxPositionY, 80, 80, MAROON); DrawText("Use mouse wheel to move the cube up and down!", 10, 10, 20, GRAY); - DrawText(TextFormat("Box position Y: %03i", 111, 222, 333, 444, 555), 10, 40, 20, LIGHTGRAY); + DrawText(TextFormat("Box position Y: %03i", boxPositionY), 10, 40, 20, LIGHTGRAY); EndDrawing(); } @@ -68,4 +68,4 @@ int main(void) //-------------------------------------------------------------------------------------- #endif return 0; -} \ No newline at end of file +} diff --git a/wasm/core_input_mouse_wheel.wasm b/wasm/core_input_mouse_wheel.wasm index 6a04a89..23175af 100755 Binary files a/wasm/core_input_mouse_wheel.wasm and b/wasm/core_input_mouse_wheel.wasm differ