From e356c0f82789e5c696cdfa1245cf41816e71ece1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=E3=83=91=E3=82=BD=E3=82=B3=E3=83=B3=E5=90=8C=E5=A5=BD?= =?utf8?q?=E4=BC=9A?= Date: Thu, 25 Jul 2013 12:17:43 +0900 Subject: [PATCH] =?utf8?q?=E5=90=84=E7=A8=AE=E7=B4=B0=E3=81=8B=E3=81=84?= =?utf8?q?=E4=BF=AE=E6=AD=A3=20=E3=83=BB=E3=82=BF=E3=82=A4=E3=83=A0?= =?utf8?q?=E3=82=B9=E3=82=BF=E3=83=B3=E3=83=97=E3=81=AE=E5=A2=97=E5=8A=A0?= =?utf8?q?=E3=81=AB=E9=96=A2=E3=81=99=E3=82=8B=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- www/corelib/core.js | 3 ++- www/index.html | 2 +- www/stage/login.js | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/www/corelib/core.js b/www/corelib/core.js index 0b9a30e..eaf3415 100755 --- a/www/corelib/core.js +++ b/www/corelib/core.js @@ -178,7 +178,8 @@ GameManager.prototype = { }, timeStampTimerTick: function(){ //サーバーとの同期カウンタ・タイマー - this.timeStamp += 10; + //100msごとに呼ばれる + this.timeStamp += 100; drawText(this.debugContext, "timeStamp:" + this.timeStamp, 0, 40); }, runStage: function(stage){ diff --git a/www/index.html b/www/index.html index 7a0dd0f..645deb2 100755 --- a/www/index.html +++ b/www/index.html @@ -19,7 +19,7 @@ onload = function() { - +
diff --git a/www/stage/login.js b/www/stage/login.js index 2fe878d..0cca910 100644 --- a/www/stage/login.js +++ b/www/stage/login.js @@ -53,7 +53,7 @@ stage.HTTPStateChange = function() if(this.status == 0){ alert("ネットワークへのアクセスに失敗しました。"); }else if((200 <= this.status && this.status < 300) || (this.status == 304)){ - alert(this.responseText); + //alert(this.responseText); result = eval(this.responseText); if(result[0] == 0){ alert("サーバーがエラーを返しました。"); -- 2.11.0