• R/O
  • HTTP
  • SSH
  • HTTPS

提交

标签
No Tags

Frequently used words (click to add to your profile)

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

ギコナビ


Commit MetaInfo

修订版00416f0e50d7a9069f67a56be42a127e672e0d86 (tree)
时间2008-10-10 22:41:33
作者eggcake <eggcake>
Commitereggcake

Log Message

C++のくせで==になってたのを修正。ごめんなさい

更改概述

差异

--- a/RoundData.pas
+++ b/RoundData.pas
@@ -382,7 +382,7 @@ begin
382382 end;
383383 //Item := TRoundItem.Create;
384384
385- if sl.Count == 0 then begin
385+ if sl.Count = 0 then begin
386386 //ƒGƒ‰[—Ž‚¿‚·‚é‚È‚Ç‚µ‚ătƒ@ƒCƒ‹‚Ì“à—e‚ª‹ó‚¾‚ƃGƒ‰[‚É‚È‚é‘΍ô
387387 sl.Add(ROUND_INDEX_VERSION);
388388 end;
@@ -448,7 +448,7 @@ begin
448448 end;
449449 end;
450450 //Item := TRoundItem.Create;
451- if sl.Count == 0 then begin
451+ if sl.Count = 0 then begin
452452 //ƒGƒ‰[—Ž‚¿‚·‚é‚È‚Ç‚µ‚ătƒ@ƒCƒ‹‚Ì“à—e‚ª‹ó‚¾‚ƃGƒ‰[‚É‚È‚é‘΍ô
453453 sl.Add(ROUND_INDEX_VERSION);
454454 end;