diff options
| author | VivyaCC <21315274+enginelesscc@users.noreply.github.com> | 2026-03-06 23:25:57 +0100 |
|---|---|---|
| committer | void_17 <heroerror3@gmail.com> | 2026-03-07 23:58:51 +0700 |
| commit | 52b1882f13bfc35b052c68fafd4641829cbd34fe (patch) | |
| tree | 477ef202101f015652da1ad96c808be48eecec7b /Minecraft.Client/Textures.cpp | |
| parent | 6dfdd9032892f933a2cd23470ccd03149d114811 (diff) | |
win cpp23 compat: Minecraft.Client
Diffstat (limited to 'Minecraft.Client/Textures.cpp')
| -rw-r--r-- | Minecraft.Client/Textures.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Minecraft.Client/Textures.cpp b/Minecraft.Client/Textures.cpp index cd6e0bae..9a2e98a6 100644 --- a/Minecraft.Client/Textures.cpp +++ b/Minecraft.Client/Textures.cpp @@ -24,7 +24,7 @@ bool Textures::MIPMAP = true; C4JRender::eTextureFormat Textures::TEXTURE_FORMAT = C4JRender::TEXTURE_FORMAT_RxGyBzAw; int Textures::preLoadedIdx[TN_COUNT]; -wchar_t *Textures::preLoaded[TN_COUNT] = +const wchar_t *Textures::preLoaded[TN_COUNT] = { L"%blur%misc/pumpkinblur", // L"%blur%/misc/vignette", // Not currently used @@ -1520,7 +1520,7 @@ TEXTURE_NAME TUImages[] = }; // This is for any TU textures that aren't part of our enum indexed preload set -wchar_t *TUImagePaths[] = +const wchar_t *TUImagePaths[] = { L"font/Default", L"font/Mojangles_7", @@ -1579,7 +1579,7 @@ TEXTURE_NAME OriginalImages[] = TN_COUNT }; -wchar_t *OriginalImagesPaths[] = +const wchar_t *OriginalImagesPaths[] = { L"misc/watercolor.png", |
