forked from mirrors/0ad
336ff333ed
OpenOggStream was previously used to stream Ogg files directly from the file system. It operated on raw file paths (OsPath) and assumed uncompressed, unarchived files, which made it unsuitable for working with files inside archives or VFS layers. However, its usage has been fully replaced by OpenOggNonstream, which: - Reads the entire file into memory (non-streaming), - Works with virtual file systems (VFS), - Supports both archived and compressed assets, Is already used consistently across debug and release builds. There are no remaining references to OpenOggStream in the codebase, so this commit removes the unused function and its associated logic.