From 864dfc3fc0a8d25bee2bbb80eb1951b4040a973d Mon Sep 17 00:00:00 2001 From: Pascal Engeler <engelerp@phys.ethz.ch> Date: Tue, 7 Sep 2021 15:53:22 +0200 Subject: [PATCH] bugfix --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ce85ea6..08bcf99 100644 --- a/README.md +++ b/README.md @@ -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"); -- GitLab