Skip to content

Commit

Permalink
Screen code regions fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Deseteral committed Oct 12, 2023
1 parent 60b0699 commit a23163b
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions src/gfx/screen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export class Screen {

/*
****************************************************************************
* drawRect*
* drawRectLines*
****************************************************************************
*/

Expand All @@ -161,6 +161,12 @@ export class Screen {
this.rect(x, y, w, h, false);
}

/*
****************************************************************************
* drawRect*
****************************************************************************
*/

/**
* Draws filled rectangle with upper-left corner at specified position and provided width and height.
*/
Expand Down Expand Up @@ -188,7 +194,7 @@ export class Screen {

/*
****************************************************************************
* drawCircle*
* drawCircleLines*
****************************************************************************
*/

Expand All @@ -206,6 +212,12 @@ export class Screen {
this.circ(x, y, radius, false, false);
}

/*
****************************************************************************
* drawCircle*
****************************************************************************
*/

/**
* Draws filled circle with its center at specified position with given radius.
*/
Expand Down

0 comments on commit a23163b

Please sign in to comment.