diff --git a/stepmania/src/StepMania.cpp b/stepmania/src/StepMania.cpp index 57fa3fd16d..e8e52ee8eb 100644 --- a/stepmania/src/StepMania.cpp +++ b/stepmania/src/StepMania.cpp @@ -369,6 +369,14 @@ struct VideoCardDefaults bool bSmoothLines; } const g_VideoCardDefaults[] = { + { + "Xbox", + "d3d,opengl", + 600,400, + 32,32,32, + 2048, + true + }, { "Voodoo *5", "d3d,opengl", // received 3 reports of opengl crashing. -Chris @@ -1013,14 +1021,6 @@ int main(int argc, char* argv[]) /* Initialize which courses are ranking courses here. */ SONGMAN->UpdateRankingCourses(); -#ifdef _XBOX - /* XXX: This is a bad way to do this. Instead, add an "XBOX" entry to - * g_VideoCardDefaults (and make sure the name shows up, so it matches). */ - g_CurrentParams.width = 600; - g_CurrentParams.height= 400; - DISPLAY->ResolutionChanged(); -#endif - /* Run the main loop. */ GameLoop();