Skip to content
Snippets Groups Projects
Commit 864dfc3f authored by Pascal Engeler's avatar Pascal Engeler
Browse files

bugfix

parent c6e75dcc
No related branches found
No related tags found
No related merge requests found
......@@ -1688,7 +1688,6 @@ uniform sampler2D tex_damp;
#define WIDTH 3840
#define HEIGHT 2160
/*Path to resources*/
int main(int argc, char** argv) {
#ifndef NDEBUG
......@@ -1714,7 +1713,8 @@ int main(int argc, char** argv) {
int texheight = HEIGHT + tex_offscreen_bottom + tex_offscreen_top;
//First construct a Toolbox and a WaveHandler
Toolbox tb(WIDTH, HEIGHT, texwidth, texheight, tex_offscreen_left, tex_offscreen_right, tex_offscreen_bottom, tex_offscreen_top, shd_path, tex_path, rsc_path);
Toolbox tb(WIDTH, HEIGHT, texwidth, texheight, tex_offscreen_left, tex_offscreen_right,
tex_offscreen_bottom, tex_offscreen_top, shd_path, tex_path, rsc_path);
WaveHandler waves(tb);
waves.initialize(tex_path + "bare", rsc_path + "ft_palette");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment