File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -775,7 +775,7 @@ namespace RTE {
775
775
// / Returns offset vector in METERS (not pixels) of the specified Impulse record.
776
776
// / @param n Impulse record index to get data from.
777
777
// / @return Offset vector in meters of the specified Impulse record.
778
- Vector GetImpulseOffset (int n) {
778
+ Vector GetImpulseOffset (unsigned int n) {
779
779
if (n > 0 && n < m_ImpulseForces.size ())
780
780
return m_ImpulseForces[n].second ;
781
781
else
@@ -792,7 +792,7 @@ namespace RTE {
792
792
793
793
// / Sets offset vector in METERS (not pixels) of the specified Impulse record.
794
794
// / @param n Impulse record index to get data from. New Vector offset value in meters.
795
- void SetImpulseOffset (int n, Vector v) {
795
+ void SetImpulseOffset (unsigned int n, Vector v) {
796
796
if (n > 0 && n < m_ImpulseForces.size ())
797
797
m_ImpulseForces[n].second = v;
798
798
}
You can’t perform that action at this time.
0 commit comments