mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Changed: Use _M and _T macros
--HG-- branch : develop
This commit is contained in:
parent
b112b7bc9b
commit
3992b53683
2 changed files with 4 additions and 4 deletions
|
@ -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();
|
||||
|
|
|
@ -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");
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue