I'm trying to put a smaller window within the main window using the ncurses library. I'm wanting it to look sort of like the final fantasy battle screen where your main map and character will be on the main window and a subwindow will be at the bottom showing your options for battle.
I'm attempting to do it using "WINDOW * subWin = newwin(nlines, ncols, y0, x0);" but when I run it I don't see any secondary window or subwindow. Would anyone know if what I'm using is incorrect or why I'm not able to actually see the subwindow?
Thanks!