rename shaders

This commit is contained in:
Josh Holtrop 2012-09-15 08:43:59 -04:00
parent ac79196325
commit c7af7f8f2f
5 changed files with 2 additions and 2 deletions

View File

@ -95,8 +95,8 @@ bool Client::initgl()
{1, "normal"},
{0, NULL}
};
const char *v_source = (const char *) CFS.get_file("shaders/obj_v.glsl", NULL);
const char *f_source = (const char *) CFS.get_file("shaders/obj_f.glsl", NULL);
const char *v_source = (const char *) CFS.get_file("shaders/obj.v.glsl", NULL);
const char *f_source = (const char *) CFS.get_file("shaders/obj.f.glsl", NULL);
if (v_source == NULL || f_source == NULL)
{
cerr << "Error loading shader sources" << endl;