Changed: Use _M and _T macros

This commit is contained in:
kervala 2016-12-06 20:26:26 +01:00
parent e76f5d5919
commit dc8b7d0d5c
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++) 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();

View file

@ -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");
} }