You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can't see a problem in the definitions for the various mvaddxxx functions and macros in ncurses.bi. decomposing the calls into equivalent move and add functions works. Example:
' attempting to do some quick curses work
#include once "curses.bi"
initscr()
move(0, 0)
addstr("This string gets printed at position (0, 0)")
mvaddstr(1, 0, "and this should be at position (1, 0)")
refresh()
napms(3000)
endwin()
Gets an error when compiled:
Invalid data types in 'mvaddstr(1, 0, "and this should be at position (1, 0)")'
fbc 1.09.0 2022-02-16
I can't see a problem in the definitions for the various mvaddxxx functions and macros in ncurses.bi. decomposing the calls into equivalent move and add functions works. Example:
Gets an error when compiled:
curses.bi and so on are all from the install.
I'm stumped.
The text was updated successfully, but these errors were encountered: