mirror of
https://github.com/vonhyou/ray-tracer-comp371.git
synced 2025-06-08 15:31:59 +00:00
remove redundant path
This commit is contained in:
parent
7d273f9420
commit
a42eae91de
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ void RayTracer::output() {
|
||||||
int width = scene->getWidth();
|
int width = scene->getWidth();
|
||||||
int height = scene->getHeight();
|
int height = scene->getHeight();
|
||||||
vector<double> buffer(3 * width * height);
|
vector<double> buffer(3 * width * height);
|
||||||
save_ppm("build/" + scene->getName(), buffer, width, height);
|
save_ppm(scene->getName(), buffer, width, height);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue