Mercurial > otakunoraifu
changeset 69:c3d4f9ee2cf1
Convert the last non-Unicode japanese comments.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Fri, 01 Apr 2011 22:15:37 +0200 (2011-04-01) |
parents | 043d5db57474 |
children | 281dcd7217df |
files | autogen.sh scn2k/scn2k_textimpl.cc system/file_impl.h |
diffstat | 3 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/autogen.sh +++ b/autogen.sh @@ -4,9 +4,9 @@ aclocal -I . && \ automake --add-missing && \ autoconf -# gcc 3.0.2 �Ѥν��� -# gtkmm �� autoconf ���Ѥǥ��顼���Ф�Τ� -# ����Ū�˥��顼�θ��ˤʤ�Ԥ��� +# gcc 3.0.2 用の修正 +# gtkmm の autoconf が変でエラーが出るので +# 強制的にエラーの元になる行を削除 #sed -e 's/^extern "C" void exit(int);//' -e "s/',//" configure > configure.new #cp configure.new configure #rm -f configure.new
--- a/scn2k/scn2k_textimpl.cc +++ b/scn2k/scn2k_textimpl.cc @@ -287,7 +287,7 @@ void Text::impl_InitFrames(Cmd& cmd) { int i, j = 0; for (i = 0; i < cmd.argc; i++) { - int cnt = cmd.args[j++].value; // £³€Ê€Î€Ç̵»ë + int cnt = cmd.args[j++].value; // 3なので無視 int num = cmd.args[j++].value; FrameTimerAtom& atom = frame_var[num]; atom.from = cmd.args[j++].value; @@ -319,7 +319,7 @@ void Text::impl_ReadFrames(Cmd& cmd) { atom.total_time = 1; int cur_tm = old_time - atom.start_time; if (cur_tm < 0) - cur_tm = atom.total_time; // ¥š¥é¡Œ€Ê€éºÇœª»þŽÖ€Ë¹ç€ï€»€ë + cur_tm = atom.total_time; // エラーなら最終時間に合わせる if (cur_tm > atom.total_time) cur_tm = atom.total_time; // use 'long long'(64bit) or 'double'(80bit) type, since total_time, to and from is 32 bit.
--- a/system/file_impl.h +++ b/system/file_impl.h @@ -81,7 +81,7 @@ class SCN2kFILE : public ARCFILE { virtual void ListupFiles(int fname_len); virtual ARCINFO* MakeARCINFO(ARCFILE_ATOM& atom); public: - SCN2kFILE(char* fname) : ARCFILE(fname) {} + SCN2kFILE(const char* fname) : ARCFILE(fname) {} virtual ~SCN2kFILE() {} };