• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

MIDITrail をピカピカにする。鍵盤方向自動切替・多ポート・歌詞対応等


Commit MetaInfo

Revisión96034437f448e7cb457ae015d6914b0f2437729c (tree)
Tiempo2019-12-22 14:31:05
Autoryoshy <yoshy@user...>
Commiteryoshy

Log Message

[FIX] コンパイルエラー修正

Cambiar Resumen

Diferencia incremental

--- a/MIDITrail/MTNoteBoxMod.cpp
+++ b/MIDITrail/MTNoteBoxMod.cpp
@@ -135,7 +135,7 @@ int MTNoteBoxMod::Transform(
135135 D3DXMatrixRotationX(&rotateMatrix, D3DXToRadian(rollAngle));
136136
137137 //移動行列
138- moveVector = m_NoteDesign.GetWorldMoveVector();
138+ moveVector = m_pNoteDesign->GetWorldMoveVector();
139139 D3DXMatrixTranslation(&moveMatrix, moveVector.x, moveVector.y, moveVector.z);
140140
141141 //行列の合成
--- a/MIDITrail/MTNoteDesignMod.cpp
+++ b/MIDITrail/MTNoteDesignMod.cpp
@@ -177,7 +177,7 @@ void MTNoteDesignMod::GetActiveNoteBoxVirtexPos(
177177 }
178178
179179 bh = GetNoteBoxHeight() * curSizeRatio;
180- bw = GetNoteBoxWidht() * curSizeRatio;
180+ bw = GetNoteBoxWidth() * curSizeRatio;
181181
182182 *pVector0 = D3DXVECTOR3(center.x, center.y+(bh/2.0f), center.z+(bw/2.0f));
183183 *pVector1 = D3DXVECTOR3(center.x, center.y+(bh/2.0f), center.z-(bw/2.0f));
--- a/MIDITrail/MTNoteRippleMod.cpp
+++ b/MIDITrail/MTNoteRippleMod.cpp
@@ -516,7 +516,7 @@ int MTNoteRippleMod::_SetVertexPosition(
516516 pbSensitivity = m_pNotePitchBend->GetSensitivity(note.portNo, note.chNo);
517517
518518 //ノートボックス中心座標取得
519- center = m_NoteDesign.GetNoteBoxCenterPosX(
519+ center = m_pNoteDesign->GetNoteBoxCenterPosX(
520520 m_CurTickTime,
521521 note.portNo,
522522 note.chNo,
@@ -566,7 +566,7 @@ int MTNoteRippleMod::_SetVertexPosition(
566566
567567 //各頂点のディフューズ色
568568 for (i = 0; i < 6; i++) {
569- color = m_NoteDesign.GetNoteBoxColor(
569+ color = m_pNoteDesign->GetNoteBoxColor(
570570 note.portNo,
571571 note.chNo,
572572 note.noteNo