refactor: unglob std::wstring

This commit is contained in:
Tropical
2026-03-06 11:50:22 -06:00
parent 41db813a6d
commit cdc08700e4
581 changed files with 2156 additions and 2154 deletions

View File

@@ -31,12 +31,12 @@ void EntityRenderer::bindTexture(int resourceName)
entityRenderDispatcher->textures->bindTexture(resourceName);
}
void EntityRenderer::bindTexture(const wstring& resourceName)
void EntityRenderer::bindTexture(const std::wstring& resourceName)
{
entityRenderDispatcher->textures->bindTexture(resourceName);
}
bool EntityRenderer::bindTexture(const wstring& urlTexture, int backupTexture)
bool EntityRenderer::bindTexture(const std::wstring& urlTexture, int backupTexture)
{
Textures *t = entityRenderDispatcher->textures;
@@ -57,7 +57,7 @@ bool EntityRenderer::bindTexture(const wstring& urlTexture, int backupTexture)
}
}
bool EntityRenderer::bindTexture(const wstring& urlTexture, const wstring& backupTexture)
bool EntityRenderer::bindTexture(const std::wstring& urlTexture, const std::wstring& backupTexture)
{
Textures *t = entityRenderDispatcher->textures;