Skip to content
This repository has been archived by the owner on Mar 18, 2023. It is now read-only.

Commit

Permalink
Oops...
Browse files Browse the repository at this point in the history
  • Loading branch information
root670 committed May 13, 2015
1 parent d8472cf commit 88048fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions graphics.h
Expand Up @@ -18,7 +18,7 @@ int initGraphicsMan();
// Draw text at (x,y) with a color // Draw text at (x,y) with a color
void graphicsDrawText(int x, int y, const char *txt, graphicsColor_t color); void graphicsDrawText(int x, int y, const char *txt, graphicsColor_t color);
// Draw centered text at y with a color // Draw centered text at y with a color
void graphicsDrawTextCentered(int y, const char *txt, graphicsColor_t color) void graphicsDrawTextCentered(int y, const char *txt, graphicsColor_t color);
// Draw transparent box to go behind text for use in a popup menu (not used) // Draw transparent box to go behind text for use in a popup menu (not used)
void graphicsDrawMiniMenuBox(int xsize, int ysize); void graphicsDrawMiniMenuBox(int xsize, int ysize);
// Draw loading bar at (x,y). Progress must be within range [0.0, 1.0]. // Draw loading bar at (x,y). Progress must be within range [0.0, 1.0].
Expand All @@ -32,9 +32,9 @@ void graphicsDrawAboutPage();
// Draw selection pointer at (x,y) // Draw selection pointer at (x,y)
void graphicsDrawPointer(int x, int y); void graphicsDrawPointer(int x, int y);
// Draw blue translucent rectangular box // Draw blue translucent rectangular box
void graphicsDrawPromptBox(int width, int height) void graphicsDrawPromptBox(int width, int height);
// Draw solid black rectangular box // Draw solid black rectangular box
void graphicsDrawPromptBoxBlack(int width, int height) void graphicsDrawPromptBoxBlack(int width, int height);


// Cover the entire screen with black // Cover the entire screen with black
void graphicsClearScreen(int r, int g, int b); void graphicsClearScreen(int r, int g, int b);
Expand Down

0 comments on commit 88048fc

Please sign in to comment.