1
0
forked from mirrors/0ad
Files
0ad/source
trompetin17 336ff333ed Remove unused OpenOggStream method
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.
2025-06-20 08:41:39 -05:00
..
2025-06-19 19:05:56 +02:00
2025-06-19 19:05:56 +02:00
2025-06-20 09:01:19 +02:00
2025-06-20 09:01:19 +02:00
2025-06-19 19:05:56 +02:00
2025-04-25 19:15:57 +02:00