Skip to content

Commit 9348c32

Browse files
committed
Update dependencies
1 parent 37af67c commit 9348c32

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

raylib/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -627,8 +627,8 @@ Unimplemented APIs
627627

628628
| Name | Description |
629629
|---------|---------------|
630-
| AttachAudioMixedProcessor | Attach audio stream processor to the entire audio pipeline, receives the samples as <float>s |
631-
| AttachAudioStreamProcessor | Attach audio stream processor to stream, receives the samples as <float>s |
630+
| AttachAudioMixedProcessor | Attach audio stream processor to the entire audio pipeline, receives the samples as 'float' |
631+
| AttachAudioStreamProcessor | Attach audio stream processor to stream, receives the samples as 'float' |
632632
| BeginVrStereoMode | Begin stereo rendering (requires VR simulator) |
633633
| DetachAudioMixedProcessor | Detach audio stream processor from the entire audio pipeline |
634634
| DetachAudioStreamProcessor | Detach audio stream processor from stream |

raylib/func.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1534,8 +1534,8 @@ static int cmd_getscreentoworldray(int argc, slib_par_t *params, var_t *retval)
15341534
static int cmd_getscreentoworldrayex(int argc, slib_par_t *params, var_t *retval) {
15351535
auto position = get_param_vec2(argc, params, 0);
15361536
auto camera = get_camera_3d(argc, params, 1);
1537-
auto width = get_param_num(argc, params, 2, 0);
1538-
auto height = get_param_num(argc, params, 3, 0);
1537+
auto width = get_param_int(argc, params, 2, 0);
1538+
auto height = get_param_int(argc, params, 3, 0);
15391539
auto fnResult = GetScreenToWorldRayEx(position, camera, width, height);
15401540
v_setray(retval, fnResult);
15411541
return 1;

websocket/mongoose

Submodule mongoose updated 71 files

0 commit comments

Comments
 (0)