Skip to content
Snippets Groups Projects
Commit 81a9bb34 authored by HASPEKIAN Yvan's avatar HASPEKIAN Yvan
Browse files

Fixed paths

parent 617ca3ff
Branches
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@ namespace pg {
ImGui::CreateContext();
ImGui::GetStyle().WindowMenuButtonPosition = ImGuiDir_None;
ImGui::GetIO().IniFilename = "../../res/config/imgui.ini";
ImGui::GetIO().IniFilename = "config/imgui.ini";
ImGui_ImplGlfw_InitForOpenGL(window.address(), true);
ImGui_ImplOpenGL3_Init("#version 330 core");
......
......@@ -24,7 +24,7 @@ namespace pg::scene
if (!_shader.usable())
{
Source vertexShaderSource(WORKSPACE_PATH + "res/shaders/scene/Grid.vert", Source::Categorie::VERTEX);
Source fragmentShaderSource(WORKSPACE_PATH + "/res/shaders/scene/Grid.frag", Source::Categorie::FRAGMENT);
Source fragmentShaderSource(WORKSPACE_PATH + "res/shaders/scene/Grid.frag", Source::Categorie::FRAGMENT);
_shader << vertexShaderSource;
_shader << fragmentShaderSource;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment