mirror of
https://github.com/1dot13/source.git
synced 2026-07-29 13:52:17 +02:00
HandleSnitchExposition: assignment instead of value check
HourlySnitchUpdate: NUM_PROFILES limit Strategic AI.cpp: MAP_WORLD_X * MAP_WORLD_Y limit RemoveMPButtonsForMapScreen: MAX_MP_BUTTONS limit WrapString: '/0' char instead of '\0' git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@8257 3b4a5df2-a311-0410-b5c6-a8a6f20db521
This commit is contained in:
+1
-1
@@ -250,7 +250,7 @@ BOOLEAN WrapString( STR16 pStr, STR16 pStr2, UINT16 usWidth, INT32 uiFont )
|
||||
{
|
||||
//We completed the check for a space, but failed, so use the hyphen method.
|
||||
swprintf( pStr2, L"-%s", &(pStr[uiHyphenLet]) );
|
||||
pStr[uiHyphenLet] = (INT16)'/0';
|
||||
pStr[uiHyphenLet] = (INT16)'\0';
|
||||
fLineSplit = TRUE; //hyphen method
|
||||
// HEADROCK HAM 3.6: This is erroneous. At this point, the function should RETURN, otherwise it
|
||||
// cuts another bit off pStr for no reason.
|
||||
|
||||
Reference in New Issue
Block a user