Skip to content

Commit

Permalink
bugfix: syntax error in VehicleDifferentialSettings.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jan 15, 2025
1 parent afd592e commit 67cacd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/native/glue/v/VehicleDifferentialSettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ JNIEXPORT jfloat JNICALL Java_com_github_stephengold_joltjni_VehicleDifferential
* Signature: (J)F
*/
JNIEXPORT jfloat JNICALL Java_com_github_stephengold_joltjni_VehicleDifferentialSettings_getEngineTorqueRatio
(JNIEnv *, jclass, jlongjlong settingsVa) {
(JNIEnv *, jclass, jlong settingsVa) {
const VehicleDifferentialSettings * const pSettings
= reinterpret_cast<VehicleDifferentialSettings *> (settingsVa);
const float result = pSettings->mEngineTorqueRatio;
Expand Down

0 comments on commit 67cacd9

Please sign in to comment.