Wednesday, June 9, 2010

[HelloÍÍÍ] iof_displayMenuItem

Struggling once again... this time I am having funny characters with my output (of spaces) when I use iof_displayMenuItem


I used the iof_display to output the menu. If I use iof_putch(' '), it'll output a space but if I use it in a loop, "Ì" characters show instead of spaces...

I am using this as my tester for the iof_displayMenuItem

#include "iof.h"

int main()
{
char str[5] = "HELLO";
iof_init();
iof_clrscr();
iof_displayMenuItem("[]", str, 15, 1, 10, 1);
iof_getch();
iof_end();
return 0;
}

No comments:

Post a Comment