Skip to content

Commit 731ebeb

Browse files
committed
feat: nullable 수정
1 parent ace4ee7 commit 731ebeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Assets/Core/Audio/AudioRecorder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ public bool StartRecording()
136136

137137
if (_recordingClip != null)
138138
{
139-
AudioClip processedClip = ProcessRecordingClip(actualRecordingDuration);
139+
AudioClip? processedClip = ProcessRecordingClip(actualRecordingDuration);
140140
if (processedClip != null)
141141
{
142142
Debug.Log($"[AudioRecorder] 음성 녹음 완료됨 ({actualRecordingDuration:F1}초, {processedClip.samples} 샘플)");

0 commit comments

Comments
 (0)