• R/O
  • SSH
  • HTTPS

Commit

Frequently used words (click to add to your profile)

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

X operations(XOPS)に非常に近いFPSゲームを制作・リメイクし、成果物をオープンソースとして公開することを目的としたプロジェクトです。


Commit MetaInfo

Revision133 (tree)
Time2016-05-30 00:35:55
Authorxops-mikan

Log Message

簡易レーダー表示でのマップ描画が正しく行われない場合があるバグの修正

Change Summary

Incremental Difference

--- trunk/collision.cpp (revision 132)
+++ trunk/collision.cpp (revision 133)
@@ -1333,7 +1333,7 @@
13331333 if( (line_x1 < box_x1)&&(line_x2 < box_x1) ){ return false; }
13341334 if( (line_y1 < box_y1)&&(line_y2 < box_y1) ){ return false; }
13351335 if( (box_x2 < line_x1)&&(box_x2 < line_x2) ){ return false; }
1336- if( (box_y2 < line_x1)&&(box_y2 < line_x2) ){ return false; }
1336+ if( (box_y2 < line_y1)&&(box_y2 < line_y2) ){ return false; }
13371337
13381338 //既に四角形に収まる
13391339 if( (box_x1 <= line_x1)&&(line_x1 <= box_x2)&&(box_y1 <= line_y1)&&(line_y1 <= box_y2) ){