Develop and Download Open Source Software

Browse Subversion Repository

Diff of /trunk/DTXManiaプロジェクト/コード/全体/CDTXMania.cs

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 45 by kairera0467, Sat Mar 16 06:11:06 2013 UTC revision 46 by kairera0467, Sat Mar 16 09:38:30 2013 UTC
# Line 24  namespace DTXMania Line 24  namespace DTXMania
24          {          {
25                  // プロパティ                  // プロパティ
26    
27                  public static readonly string VERSION = "Ver2.30(130302)";                  public static readonly string VERSION = "Ver2.35(130315)";
28                  public static readonly string SLIMDXDLL = "c_net20x86_Jun2010";                  public static readonly string SLIMDXDLL = "c_net20x86_Jun2010";
29                  public static readonly string D3DXDLL = "d3dx9_43.dll";         // June 2010                  public static readonly string D3DXDLL = "d3dx9_43.dll";         // June 2010
30          //public static readonly string D3DXDLL = "d3dx9_42.dll";       // February 2010          //public static readonly string D3DXDLL = "d3dx9_42.dll";       // February 2010
# Line 521  namespace DTXMania Line 521  namespace DTXMania
521                  Bitmap image = new Bitmap(1, 1);                  Bitmap image = new Bitmap(1, 1);
522                  Graphics graphics = Graphics.FromImage(image);                  Graphics graphics = Graphics.FromImage(image);
523                  graphics.PageUnit = GraphicsUnit.Pixel;                  graphics.PageUnit = GraphicsUnit.Pixel;
524                  int width = (int)graphics.MeasureString("DTXManiaXG(verK) ver 2.30     based on DTXMania", this.ftDeclaration).Width;                  int width = (int)graphics.MeasureString("DTXManiaXG(verK) ver 2.35     based on DTXMania", this.ftDeclaration).Width;
525                  graphics.Dispose();                  graphics.Dispose();
526                  Bitmap bitmap2 = new Bitmap(width, this.ftDeclaration.Height);                  Bitmap bitmap2 = new Bitmap(width, this.ftDeclaration.Height);
527                  graphics = Graphics.FromImage(bitmap2);                  graphics = Graphics.FromImage(bitmap2);
528                  graphics.DrawString("DTXManiaXG(verK) ver 2.30     based on DTXMania", this.ftDeclaration, Brushes.White, (float)0f, (float)0f);                  graphics.DrawString("DTXManiaXG(verK) ver 2.35     based on DTXMania", this.ftDeclaration, Brushes.White, (float)0f, (float)0f);
529                  graphics.Dispose();                  graphics.Dispose();
530                  this.txCredit = new CTexture(app.Device, bitmap2, TextureFormat);                  this.txCredit = new CTexture(app.Device, bitmap2, TextureFormat);
531                  bitmap2.Dispose();                  bitmap2.Dispose();

Legend:
Removed from v.45  
changed lines
  Added in v.46

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26