Skip to content

Commit

Permalink
fix compilation error in place_loc_vars()
Browse files Browse the repository at this point in the history
  • Loading branch information
soheilshahrouz committed Jul 29, 2024
1 parent a85ecc4 commit f574059
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vpr/src/draw/draw.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ void free_draw_structs() {
#endif /* NO_GRAPHICS */
}

void init_draw_coords(float width_val, const PlaceLocVars& place_loc_vars) {
void place_loc_vars(float width_val, const PlaceLocVars& place_loc_vars) {
#ifndef NO_GRAPHICS
/* Load the arrays containing the left and bottom coordinates of the clbs *
* forming the FPGA. tile_width_val sets the width and height of a drawn *
Expand Down Expand Up @@ -642,6 +642,7 @@ void init_draw_coords(float width_val, const PlaceLocVars& place_loc_vars) {
* draw_height});
#else
(void)width_val;
(void)place_loc_vars;
#endif /* NO_GRAPHICS */
}

Expand Down

0 comments on commit f574059

Please sign in to comment.