From 17e531374c04191e874a7ce24c5d12364901ca63 Mon Sep 17 00:00:00 2001 From: Patiga Date: Sat, 17 Oct 2020 14:05:06 +0200 Subject: [PATCH] Embed sounds by default --- src/game/editor/editor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/editor/editor.cpp b/src/game/editor/editor.cpp index 2ad519a35..893f5b791 100644 --- a/src/game/editor/editor.cpp +++ b/src/game/editor/editor.cpp @@ -3718,7 +3718,7 @@ void CEditor::AddSound(const char *pFileName, int StorageType, void *pUser) // add sound CEditorSound *pSound = new CEditorSound(pEditor); pSound->m_SoundID = SoundId; - pSound->m_External = 1; // external by default + pSound->m_External = 0; // embedded by default pSound->m_DataSize = (unsigned)DataSize; pSound->m_pData = pData; str_copy(pSound->m_aName, aBuf, sizeof(pSound->m_aName));