Browse Subversion Repository
Diff of /trunk/DTXManiaプロジェクト/コード/ステージ/05.選曲/CActSelect曲リスト.cs
Parent Directory
| Revision Log
| Patch
| 1274 |
private void tアイテム数の描画() |
private void tアイテム数の描画() |
| 1275 |
{ |
{ |
| 1276 |
string s = nCurrentPosition.ToString() + "/" + nNumOfItems.ToString(); |
string s = nCurrentPosition.ToString() + "/" + nNumOfItems.ToString(); |
| 1277 |
int x = 1820 - 8 - 12; |
int x = 1280 - 8 - 12; |
| 1278 |
int y = 500; |
int y = 500; |
| 1279 |
|
|
| 1280 |
for ( int p = s.Length - 1; p >= 0; p-- ) |
for ( int p = s.Length - 1; p >= 0; p-- ) |
| 1281 |
{ |
{ |
| 1282 |
tアイテム数の描画・1桁描画( x, y, s[ p ] ); |
tアイテム数の描画・1桁描画( x, y, s[ p ] ); |
| 1283 |
x -= 8; |
x -= 10; |
| 1284 |
} |
} |
| 1285 |
} |
} |
| 1286 |
private void tアイテム数の描画・1桁描画( int x, int y, char s数値 ) |
private void tアイテム数の描画・1桁描画( int x, int y, char s数値 ) |
| 1288 |
int dx, dy; |
int dx, dy; |
| 1289 |
if ( s数値 == '/' ) |
if ( s数値 == '/' ) |
| 1290 |
{ |
{ |
| 1291 |
dx = 48; |
dx = 96; |
| 1292 |
dy = 0; |
dy = 0; |
| 1293 |
} |
} |
| 1294 |
else |
else |
|
|
Legend:
| Removed from v.21 |
|
| changed lines |
| |
Added in v.121 |
|
|
| |