Changed: Use _M and _T macros

--HG--
branch : develop
This commit is contained in:
kervala 2016-12-06 20:26:26 +01:00
parent b112b7bc9b
commit 3992b53683
2 changed files with 4 additions and 4 deletions

View file

@ -589,10 +589,10 @@ void EditPatchMod::UpdateSelectDisplay()
for (j = 0; j < thePatch->tileSel.GetSize(); j++)
if (thePatch->tileSel[j])
break;
buf.printf("Tile %d Selected", j + 1);
buf.printf(_T("Tile %d Selected"), j + 1);
}
else
buf.printf("%d Tiles Selected", num);
buf.printf(_T("%d Tiles Selected"), num);
}
break;
}
@ -733,7 +733,7 @@ void EditPatchMod::DoVertReset ()
}
ResolveTopoChanges();
theHold.Accept("Reset Vertex");
theHold.Accept(_M("Reset Vertex"));
/*if (holdNeeded)
{
ResolveTopoChanges();

View file

@ -64,7 +64,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL,ULONG fdwReason,LPVOID lpvReserved)
__declspec( dllexport ) const TCHAR *
LibDescription()
{
return "NeL patch painter";
return _T("NeL patch painter");
}