bug bug bug mais integrer

This commit is contained in:
GolfOcean334
2024-04-04 10:50:37 +02:00
parent 25316d3f4b
commit b5d597b64e
8 changed files with 72 additions and 90 deletions

View File

@@ -31,14 +31,14 @@ bool TranslateShaderClass::Initialize(ID3D11Device* device, HWND hwnd)
int error;
// Set the filename of the vertex shader.
error = wcscpy_s(vsFilename, 128, L"../Engine/translate.vs");
error = wcscpy_s(vsFilename, 128, L"translate.vs");
if (error != 0)
{
return false;
}
// Set the filename of the pixel shader.
error = wcscpy_s(psFilename, 128, L"../Engine/translate.ps");
error = wcscpy_s(psFilename, 128, L"translate.ps");
if (error != 0)
{
return false;