477 changes: 154 additions & 323 deletions src/frontend.cpp

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/warzoneconfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ void war_setFSAA(unsigned int fsaa)
warGlobs.fsaa = (FSAA_LEVEL)(fsaa % FSAA_MAX);
}

unsigned int war_getFSAA()
FSAA_LEVEL war_getFSAA()
{
return warGlobs.fsaa;
}
Expand Down
2 changes: 1 addition & 1 deletion src/warzoneconfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ extern bool war_GetAllowSubtitles(void);
extern void war_setFullscreen(bool);
extern bool war_getFullscreen(void);
extern void war_setFSAA(unsigned int);
extern unsigned int war_getFSAA(void);
FSAA_LEVEL war_getFSAA();
extern void war_SetTrapCursor(bool b);
extern bool war_GetTrapCursor(void);
extern bool war_GetColouredCursor(void);
Expand Down