| 23 |
{ |
{ |
| 24 |
// プロパティ |
// プロパティ |
| 25 |
|
|
| 26 |
public static readonly string VERSION = "Ver2.42(130427)"; |
public static readonly string VERSION = "Ver2.45(130502)"; |
| 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 |
| 519 |
Bitmap image = new Bitmap(1, 1); |
Bitmap image = new Bitmap(1, 1); |
| 520 |
Graphics graphics = Graphics.FromImage(image); |
Graphics graphics = Graphics.FromImage(image); |
| 521 |
graphics.PageUnit = GraphicsUnit.Pixel; |
graphics.PageUnit = GraphicsUnit.Pixel; |
| 522 |
int width = (int)graphics.MeasureString("DTXManiaXG(verK) ver 2.42 based on DTXMania", this.ftDeclaration).Width; |
int width = (int)graphics.MeasureString("DTXManiaXG(verK) ver 2.45 based on DTXMania", this.ftDeclaration).Width; |
| 523 |
graphics.Dispose(); |
graphics.Dispose(); |
| 524 |
Bitmap bitmap2 = new Bitmap(width, this.ftDeclaration.Height); |
Bitmap bitmap2 = new Bitmap(width, this.ftDeclaration.Height); |
| 525 |
graphics = Graphics.FromImage(bitmap2); |
graphics = Graphics.FromImage(bitmap2); |
| 526 |
graphics.DrawString("DTXManiaXG(verK) ver 2.42 based on DTXMania", this.ftDeclaration, Brushes.White, (float)0f, (float)0f); |
graphics.DrawString("DTXManiaXG(verK) ver 2.45 based on DTXMania", this.ftDeclaration, Brushes.White, (float)0f, (float)0f); |
| 527 |
graphics.Dispose(); |
graphics.Dispose(); |
| 528 |
this.txCredit = new CTexture(app.Device, bitmap2, TextureFormat); |
this.txCredit = new CTexture(app.Device, bitmap2, TextureFormat); |
| 529 |
bitmap2.Dispose(); |
bitmap2.Dispose(); |