#include "mod_picmes.as"
picmes_init
count_max = 1000
//------------------------------------------------
getreq normal_time_1, SYSREQ_TIMER
repeat count_max
pos 0, 0
mes "あいうえお"
loop
getreq normal_time_2, SYSREQ_TIMER
normal_time_3 = normal_time_2 - normal_time_1
//------------------------------------------------
getreq picmes_time_1, SYSREQ_TIMER
repeat count_max
pos 0, 0
picmes "あいうえお"
loop
getreq picmes_time_2, SYSREQ_TIMER
picmes_time_3 = picmes_time_2 - picmes_time_1
//------------------------------------------------
dialog "normal_time_3=" + normal_time_3 + " / picmes_time_3=" + picmes_time_3
end
; 結果(normal_time3=16 / picmes_time_3 = 154)
; mes命令側は同じ文字を表示すると早くなる
0 件のコメント:
コメントを投稿