| 23 |
{ |
{ |
| 24 |
// プロパティ |
// プロパティ |
| 25 |
|
|
| 26 |
public static readonly string VERSION = "Ver2.36(130326)"; |
public static readonly string VERSION = "Ver2.40(130413)"; |
| 27 |
public static readonly string SLIMDXDLL = "c_net20x86_Jun2010"; |
public static readonly string SLIMDXDLL = "c_net20x86_Jun2010"; |
| 28 |
public static readonly string D3DXDLL = "d3dx9_43.dll"; // June 2010 |
public static readonly string D3DXDLL = "d3dx9_43.dll"; // June 2010 |
| 29 |
//public static readonly string D3DXDLL = "d3dx9_42.dll"; // February 2010 |
//public static readonly string D3DXDLL = "d3dx9_42.dll"; // February 2010 |
| 508 |
Bitmap image = new Bitmap(1, 1); |
Bitmap image = new Bitmap(1, 1); |
| 509 |
Graphics graphics = Graphics.FromImage(image); |
Graphics graphics = Graphics.FromImage(image); |
| 510 |
graphics.PageUnit = GraphicsUnit.Pixel; |
graphics.PageUnit = GraphicsUnit.Pixel; |
| 511 |
int width = (int)graphics.MeasureString("DTXManiaXG(verK) ver 2.35 based on DTXMania", this.ftDeclaration).Width; |
int width = (int)graphics.MeasureString("DTXManiaXG(verK) ver 2.40 based on DTXMania", this.ftDeclaration).Width; |
| 512 |
graphics.Dispose(); |
graphics.Dispose(); |
| 513 |
Bitmap bitmap2 = new Bitmap(width, this.ftDeclaration.Height); |
Bitmap bitmap2 = new Bitmap(width, this.ftDeclaration.Height); |
| 514 |
graphics = Graphics.FromImage(bitmap2); |
graphics = Graphics.FromImage(bitmap2); |
| 515 |
graphics.DrawString("DTXManiaXG(verK) ver 2.35 based on DTXMania", this.ftDeclaration, Brushes.White, (float)0f, (float)0f); |
graphics.DrawString("DTXManiaXG(verK) ver 2.40 based on DTXMania", this.ftDeclaration, Brushes.White, (float)0f, (float)0f); |
| 516 |
graphics.Dispose(); |
graphics.Dispose(); |
| 517 |
this.txCredit = new CTexture(app.Device, bitmap2, TextureFormat); |
this.txCredit = new CTexture(app.Device, bitmap2, TextureFormat); |
| 518 |
bitmap2.Dispose(); |
bitmap2.Dispose(); |