Skip to content

Commit 92005ba

Browse files
committed
raylib: Refer to Odin-style enum over original C enum
Fixes #4865
1 parent 1633d9b commit 92005ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vendor/raylib/raylib.odin

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ Camera3D :: struct {
274274
target: Vector3, // Camera target it looks-at
275275
up: Vector3, // Camera up vector (rotation over its axis)
276276
fovy: f32, // Camera field-of-view apperture in Y (degrees) in perspective, used as near plane width in orthographic
277-
projection: CameraProjection, // Camera projection: CAMERA_PERSPECTIVE or CAMERA_ORTHOGRAPHIC
277+
projection: CameraProjection, // Camera projection: `.PERSPECTIVE` or `.ORTHOGRAPHIC`
278278
}
279279

280280
Camera :: Camera3D // Camera type fallback, defaults to Camera3D

0 commit comments

Comments
 (0)