From e2ad271bd854369b437524cde60bfcb462225b82 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sun, 1 Jul 2007 12:47:07 +0000 Subject: Removing non-ASCII chars from source code svn-id: r27818 --- sound/softsynth/ym2612.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sound/softsynth') diff --git a/sound/softsynth/ym2612.cpp b/sound/softsynth/ym2612.cpp index 5d36c9ec28..e3aa9d2528 100644 --- a/sound/softsynth/ym2612.cpp +++ b/sound/softsynth/ym2612.cpp @@ -129,7 +129,7 @@ void Operator2612::frequency(int freq) { value *= 127 - _specifiedTotalLevel; value /= 127; } - _attackTime = (int32) value; // 1 秒 == (1 << 12) + _attackTime = (int32) value; // 1 ?? == (1 << 12) if (_attackTime > 0) _attackTime = (1 << (12+10)) / (_owner->_rate * _attackTime); @@ -295,7 +295,7 @@ Voice2612::~Voice2612() { void Voice2612::velocity(int velo) { _velocity = velo; #if 0 - int v = (velo * _control7) >> 7; // これだと精度良くないですね + int v = (velo * _control7) >> 7; #else int v = velo + (_control7 - 127) * 4; #endif -- cgit v1.2.3