(svn r14051) -Codechange: enumify the DrawString buffer length.

This commit is contained in:
rubidium
2008-08-12 11:21:37 +00:00
parent 61007078b6
commit a3910ced70
3 changed files with 17 additions and 10 deletions

View File

@@ -75,6 +75,11 @@ void ScreenSizeChanged();
void GameSizeChanged();
void UndrawMouseCursor();
enum {
/* Size of the buffer used for drawing strings. */
DRAW_STRING_BUFFER = 1024,
};
void RedrawScreenRect(int left, int top, int right, int bottom);
void GfxScroll(int left, int top, int width, int height, int xo, int yo);