Skip to content

Commit

Permalink
Fixed minor bug
Browse files Browse the repository at this point in the history
  • Loading branch information
arpit-saxena committed Mar 1, 2017
1 parent cab7a1d commit d1f8f4c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions quiz.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,9 @@ extern int width; //!< Width of the screen
*/
void printc(char* str, int ws = (-1), int t_color = LIGHTGRAY, int b_color = BLACK);

//! Defines the modes from printing the frame
enum frame_modes {NOSIDES, SIDES};

//! Generates a frame
/*!
@param[in] up_left Upper left coordinate of frame; upper-left corner of window, if not specified
Expand All @@ -134,9 +137,6 @@ void printc(char* str, int ws = (-1), int t_color = LIGHTGRAY, int b_color = BLA
*/
void frame (coord up_left = coord(-1,-1), int f_height = -1, int f_width = -1, int f_mode = SIDES);

//! Defines the modes from printing the frame
enum frame_modes {NOSIDES, SIDES};

//! Defines what type of key will invoke the select function to return a value
/*!
\sa select()
Expand Down

0 comments on commit d1f8f4c

Please sign in to comment.