Skip to content

Commit aaa1cb1

Browse files
authored
Fixed case in RadeonRays_SDK/Tutorials/CornellBox/main.cpp
main.cpp:5:10: warning: non-portable path to file '"../Tools/shader_manager.h"'; specified path differs in case from file name on disk [-Wnonportable-include-path] #include "../tools/shader_manager.h" ^~~~~~~~~~~~~~~~~~~~~~~~~~~ "../Tools/shader_manager.h"
1 parent 688c66a commit aaa1cb1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Tutorials/CornellBox/main.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ THE SOFTWARE.
2525
#include <cassert>
2626
#include <iostream>
2727
#include <memory>
28-
#include "../tools/shader_manager.h"
29-
#include "../tools/tiny_obj_loader.h"
28+
#include "../Tools/shader_manager.h"
29+
#include "../Tools/tiny_obj_loader.h"
3030

3131
using namespace RadeonRays;
3232
using namespace tinyobj;
@@ -208,7 +208,7 @@ int main(int argc, char* argv[])
208208
api->AttachShape(shape);
209209
shape->SetId(id);
210210
}
211-
// Ñommit scene changes
211+
// Commit scene changes
212212
api->Commit();
213213

214214
const int k_raypack_size = g_window_height * g_window_width;
@@ -305,4 +305,4 @@ int main(int argc, char* argv[])
305305
IntersectionApi::Delete(api);
306306

307307
return 0;
308-
}
308+
}

0 commit comments

Comments
 (0)