Blender Git Commit Log
Git Commits -> Revision 69c5704
December 31, 2002, 11:54 (GMT) |
Sorry about that this is part of the last update. I ment to cancel it and include both files. Anyway I was fixing the warning with ascii char... Here is the diff for editfont.c (the .h was just fixing the header to match it) Kent Index: editfont.c =================================================================== RCS file: /cvs01/blender/source/blender/src/editfont.c,v retrieving revision 1.3 diff -u -r1.3 editfont.c --- editfont.c 25 Nov 2002 12:02:05 -0000 1.3 +++ editfont.c 31 Dec 2002 11:52:10 -0000 @@ -226,11 +226,12 @@ } } -void do_textedit(unsigned short event, short val, char ascii) +void do_textedit(unsigned short event, short val, unsigned char _ascii) { Curve *cu; static int accentcode= 0; int x, doit=0, cursmove=0; + int ascii = _ascii; |
Commit Details:
Full Hash: 69c57046e79f75a122b3c1da73820cb77536c333
SVN Revision: 250
Parent Commit: b36298c
Lines Changed: +1, -1
1 Modified Path:
/source/blender/include/BIF_editfont.h (+1, -1) (Diff)