diff options
| author | xHire <xhire@tuxportal.cz> | 2009-05-19 12:41:49 +0200 |
|---|---|---|
| committer | xHire <xhire@tuxportal.cz> | 2009-05-26 01:09:50 +0200 |
| commit | 676600a83becf1d8da0ba8f7a56fa8ce544fe7ce (patch) | |
| tree | 4a9009ac3c781585d502342c15a0a7de0129f414 /src/screen/table.h | |
| parent | afb63da1374aadd4a5feccff020e65b616d9b84a (diff) | |
Rectified the coding style in screen .h files
Diffstat (limited to 'src/screen/table.h')
| -rw-r--r-- | src/screen/table.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/screen/table.h b/src/screen/table.h index 9f4bf46..7940ee9 100644 --- a/src/screen/table.h +++ b/src/screen/table.h @@ -1,10 +1,8 @@ - #ifndef SCREEN_TABLE_H +#define SCREEN_TABLE_H -# define SCREEN_TABLE_H - -# define SCREEN_TABLE_MAX_PLAYERS 10 -# define SCREEN_TABLE_FILE_HIGHSCORE_NAME "highscore" +#define SCREEN_TABLE_MAX_PLAYERS 10 +#define SCREEN_TABLE_FILE_HIGHSCORE_NAME "highscore" extern void table_start(); extern void table_draw(); @@ -14,4 +12,4 @@ extern int table_add(char *name, int score); extern void table_init(); extern void table_quit(); -#endif +#endif /* SCREEN_TABLE_H */ |