* Changed the AGGTextRenderer to use the new UTF8 handling
* Added more char codes to is_white_space(), should be all I think Sorry if I stepped on your toes Stephan, but I wanted these changes flushed before I leave for holidays :-). git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16501 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -159,10 +159,8 @@ UTF8ToCharCode(const char **bytes)
|
||||
}
|
||||
|
||||
if ((*bytes)[0] == 0) {
|
||||
/* We do not advance beyond the terminating 0. Just pad any further
|
||||
request with spaces. */
|
||||
result += 0x20;
|
||||
return result;
|
||||
/* We do not advance beyond the terminating 0. */
|
||||
return 0x00;
|
||||
}
|
||||
|
||||
result += (*bytes)[0];
|
||||
|
||||
Reference in New Issue
Block a user