allow theme to specify logical screen dimensions

This commit is contained in:
Chris Danford
2004-09-21 06:07:12 +00:00
parent 18f720cda6
commit 807d892f4f
48 changed files with 220 additions and 43 deletions
+5 -4
View File
@@ -6,12 +6,13 @@
#include "GameConstantsAndTypes.h"
#include "PrefsManager.h"
#include "ThemeManager.h"
#include "ScreenDimensions.h"
const float QUESTION_X = CENTER_X;
const float QUESTION_Y = CENTER_Y - 60;
#define QUESTION_X (CENTER_X)
#define QUESTION_Y (CENTER_Y - 60)
const float PROMPT_X = CENTER_X;
const float PROMPT_Y = CENTER_Y + 120;
#define PROMPT_X (CENTER_X)
#define PROMPT_Y (CENTER_Y + 120)
bool ScreenPrompt::s_bLastAnswer = false;