mirror of
https://github.com/scummvm/scummvm.git
synced 2026-05-21 05:40:43 +00:00
ALL: Fixed compiler warnings
This commit is contained in:
+2
-2
@@ -29,9 +29,9 @@ namespace Math {
|
||||
Ray::Ray() {
|
||||
}
|
||||
|
||||
Ray::Ray(const Vector3d &origin, const Vector3d &direction) :
|
||||
Ray::Ray(const Vector3d &origin, const Vector3d &dir) :
|
||||
_origin(origin),
|
||||
_direction(direction) {
|
||||
_direction(dir) {
|
||||
}
|
||||
|
||||
void Ray::transform(const Matrix4 &matrix) {
|
||||
|
||||
Reference in New Issue
Block a user