Skip to content

Commit 6b02f04

Browse files
committed
Fix warning
1 parent 651807d commit 6b02f04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Sound/C3D.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ void ScriptParam::LoadSound(const std::string& name)
330330
SND_Sample* sample = SNDLoadSound(name);
331331

332332
if (sample == nullptr) {
333-
if (0 < SND::has_sound_init) {
333+
if (SND::has_sound_init) {
334334
logs("Sound not loaded: %s\n", name.c_str());
335335
}
336336
} else {

0 commit comments

Comments
 (0)