fixed a minor evas color engine logic(sorry, cause of conflict, im re-committing...
authorchuneon.park <chuneon.park@samsung.com>
Mon, 21 Feb 2011 08:44:41 +0000 (17:44 +0900)
committerchuneon.park <chuneon.park@samsung.com>
Mon, 21 Feb 2011 08:44:41 +0000 (17:44 +0900)
src/lib/canvas/evas_font_dir.c

index e939551..91eed78 100644 (file)
@@ -912,7 +912,7 @@ evas_object_text_font_string_parse(char *buffer, char dest[14][256])
    while (p[i])
      {
        dest[n][m] = p[i];
-       if ((p[i] == '-') || (m == 256))
+       if ((p[i] == '-') || (m == 255))
          {
             dest[n][m] = 0;
             n++;