diff options
| author | flashback-fx <[email protected]> | 2022-06-06 20:18:37 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-06-06 20:18:37 +0200 |
| commit | c11d30bafef2b0a7836815dc914a2725c726068a (patch) | |
| tree | 4c844c3f85b326ccfde58b75ac5e6d4994837d60 /src/raylib.h | |
| parent | 609d92003beca6522845d001b3d4f707b72aaba1 (diff) | |
| download | raylib-c11d30bafef2b0a7836815dc914a2725c726068a.tar.gz raylib-c11d30bafef2b0a7836815dc914a2725c726068a.zip | |
Change WaitTime argument from milliseconds to seconds (#2506)
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h index 8379c343..3fcf66b3 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -958,7 +958,7 @@ RLAPI void DisableEventWaiting(void); // Disable wai // To avoid that behaviour and control frame processes manually, enable in config.h: SUPPORT_CUSTOM_FRAME_CONTROL RLAPI void SwapScreenBuffer(void); // Swap back buffer with front buffer (screen drawing) RLAPI void PollInputEvents(void); // Register all input events -RLAPI void WaitTime(float ms); // Wait for some milliseconds (halt program execution) +RLAPI void WaitTime(double waitSeconds); // Wait for some time (halt program execution) // Cursor-related functions RLAPI void ShowCursor(void); // Shows cursor |
