Display ReactPhysics3D version in title bar of testbed application

This commit is contained in:
Daniel Chappuis 2021-09-03 07:41:34 +02:00
parent 714ea1a43e
commit 9ef0d6fcae
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@
using namespace nanogui;
// Main function
int main(int argc, char** argv) {
int main(int /*argc*/, char** /*argv*/) {
nanogui::init();

View File

@ -75,7 +75,7 @@ const float TestbedApplication::SCROLL_SENSITIVITY = 0.08f;
// Constructor
TestbedApplication::TestbedApplication(bool isFullscreen, int windowWidth, int windowHeight)
: Screen(Vector2i(windowWidth, windowHeight), "Testbed ReactPhysics3D", true, isFullscreen, true, true, false, 4, 1),
: Screen(Vector2i(windowWidth, windowHeight), "Testbed ReactPhysics3D v" + rp3d::RP3D_VERSION, true, isFullscreen, true, true, false, 4, 1),
mIsInitialized(false), mGui(this), mCurrentScene(nullptr),
mEngineSettings(EngineSettings::defaultSettings()),
mFPS(0), mNbFrames(0), mPreviousTime(0),