mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-02 11:55:13 +00:00
refactor: unglob std::wstring
This commit is contained in:
@@ -11,10 +11,10 @@
|
||||
#include "../IO/Streams/IntBuffer.h"
|
||||
#include "../../Minecraft.Client/Rendering/Tesselator.h"
|
||||
|
||||
const wstring RedStoneDustTile::TEXTURE_CROSS = L"redstoneDust_cross";
|
||||
const wstring RedStoneDustTile::TEXTURE_LINE = L"redstoneDust_line";
|
||||
const wstring RedStoneDustTile::TEXTURE_CROSS_OVERLAY = L"redstoneDust_cross_overlay";
|
||||
const wstring RedStoneDustTile::TEXTURE_LINE_OVERLAY = L"redstoneDust_line_overlay";
|
||||
const std::wstring RedStoneDustTile::TEXTURE_CROSS = L"redstoneDust_cross";
|
||||
const std::wstring RedStoneDustTile::TEXTURE_LINE = L"redstoneDust_line";
|
||||
const std::wstring RedStoneDustTile::TEXTURE_CROSS_OVERLAY = L"redstoneDust_cross_overlay";
|
||||
const std::wstring RedStoneDustTile::TEXTURE_LINE_OVERLAY = L"redstoneDust_line_overlay";
|
||||
|
||||
RedStoneDustTile::RedStoneDustTile(int id) : Tile(id, Material::decoration,isSolidRender())
|
||||
{
|
||||
@@ -415,7 +415,7 @@ void RedStoneDustTile::registerIcons(IconRegister *iconRegister)
|
||||
icon = iconCross;
|
||||
}
|
||||
|
||||
Icon *RedStoneDustTile::getTexture(const wstring &name)
|
||||
Icon *RedStoneDustTile::getTexture(const std::wstring &name)
|
||||
{
|
||||
#ifdef __PSVITA__
|
||||
// AP - alpha cut out is expensive on vita. Set the Alpha Cut out flag
|
||||
|
||||
Reference in New Issue
Block a user