3DFileViewer: Move the example model into the home directory

This commit is contained in:
Gunnar Beutner 2021-05-20 21:00:14 +02:00 committed by Andreas Kling
parent 1e0d855fdf
commit 728e6dad73
Notes: sideshowbarker 2024-07-18 17:40:33 +09:00
2 changed files with 1 additions and 1 deletions

View file

@ -61,7 +61,7 @@ private:
glEndList();
// Load the teapot
m_mesh = m_mesh_loader->load("/res/gl/teapot.obj");
m_mesh = m_mesh_loader->load("/home/anon/Documents/3D Models/teapot.obj");
dbgln("3DFileViewer: teapot mesh has {} triangles.", m_mesh->triangle_count());
}