X Tutup
Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion engines/awe/awe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ namespace Awe {
AweEngine *g_engine;


/* unused
static const struct {
const char *name;
int type;
Expand All @@ -54,6 +55,7 @@ static const struct {
{ "hard", DIFFICULTY_HARD },
{ nullptr, -1 }
};
*/

bool Gfx::_is1991;
Graphics::PixelFormat Gfx::_format;
Expand All @@ -73,7 +75,7 @@ static Gfx *createGraphics(int type) {
debugC(kDebugInfo, "Using GL graphics");
#ifdef USE_GL
return GraphicsGL_create();
#elsif
#else
break;
#endif

Expand Down
Loading
X Tutup