diff options
| author | Patrick Schönberger | 2021-01-20 12:53:28 +0100 |
|---|---|---|
| committer | Patrick Schönberger | 2021-01-20 12:53:28 +0100 |
| commit | 524432970b5aaee6e6dbc6162111dbe1e9fd0749 (patch) | |
| tree | 4a8ccb340391ed35d19b4fae59d96992c5d5b8c5 /src/main.cpp | |
| parent | 8107e994b24112c5bce75a8ae57d0680e5f9161a (diff) | |
| download | subsurface_scattering-524432970b5aaee6e6dbc6162111dbe1e9fd0749.tar.gz subsurface_scattering-524432970b5aaee6e6dbc6162111dbe1e9fd0749.zip | |
fix build.sh
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index 1440f04..b95cc97 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -389,7 +389,7 @@ int main() { ImGui::Begin("Options");
ImGui::Checkbox("Wireframe", &options.wireframe);
- ImGui::Checkbox("Free Cam (F)", &options.freecam);
+ ImGui::Checkbox("Free Cam", &options.freecam);
if (options.freecam) {
ImGui::LabelText("Position", "%f %f %f", freeCam.pos.x, freeCam.pos.y, freeCam.pos.z);
ImGui::LabelText("Rotation", "%f %f", freeCam.rot.x, freeCam.rot.y);
@@ -413,4 +413,4 @@ int main() { }
return 0;
-}
\ No newline at end of file +}
|
