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++)
|
for (j = 0; j < thePatch->tileSel.GetSize(); j++)
|
||||||
if (thePatch->tileSel[j])
|
if (thePatch->tileSel[j])
|
||||||
break;
|
break;
|
||||||
buf.printf("Tile %d Selected", j + 1);
|
buf.printf(_T("Tile %d Selected"), j + 1);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
buf.printf("%d Tiles Selected", num);
|
buf.printf(_T("%d Tiles Selected"), num);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -733,7 +733,7 @@ void EditPatchMod::DoVertReset ()
|
||||||
}
|
}
|
||||||
|
|
||||||
ResolveTopoChanges();
|
ResolveTopoChanges();
|
||||||
theHold.Accept("Reset Vertex");
|
theHold.Accept(_M("Reset Vertex"));
|
||||||
/*if (holdNeeded)
|
/*if (holdNeeded)
|
||||||
{
|
{
|
||||||
ResolveTopoChanges();
|
ResolveTopoChanges();
|
||||||
|
|
|
@ -64,7 +64,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL,ULONG fdwReason,LPVOID lpvReserved)
|
||||||
__declspec( dllexport ) const TCHAR *
|
__declspec( dllexport ) const TCHAR *
|
||||||
LibDescription()
|
LibDescription()
|
||||||
{
|
{
|
||||||
return "NeL patch painter";
|
return _T("NeL patch painter");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue