Author: sagamusix
Date: Sun Apr 14 00:29:44 2024
New Revision: 20587
URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=20587
Log:
[Fix] Mark function as static.
Modified:
trunk/OpenMPT/soundlib/Load_puma.cpp
Modified: trunk/OpenMPT/soundlib/Load_puma.cpp
==============================================================================
--- trunk/OpenMPT/soundlib/Load_puma.cpp Sun Apr 14 00:24:00 2024 (r20586)
+++ trunk/OpenMPT/soundlib/Load_puma.cpp Sun Apr 14 00:29:44 2024 (r20587)
@@ -91,7 +91,7 @@
MPT_BINARY_STRUCT(PumaFileHeader, 80)
-bool TranslatePumaScript(InstrumentSynth::Events &events, ModInstrument &instr, FileReader &file, bool isVolume)
+static bool TranslatePumaScript(InstrumentSynth::Events &events, ModInstrument &instr, FileReader &file, bool isVolume)
{
bool isFirst = true;
while(file.CanRead(4))
|