mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
DolphinTool: Allow converting non-GC/Wii files
This was requested by a forum user, and I thought why not. It's a simple change to make since DiscIO already supports it, and I assume command-line users know roughly what they're doing.
This commit is contained in:
@ -3,14 +3,11 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstdint>
|
||||
#include <optional>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "DiscIO/Blob.h"
|
||||
#include "DiscIO/DiscUtils.h"
|
||||
#include "DiscIO/ScrubbedBlob.h"
|
||||
#include "DiscIO/Volume.h"
|
||||
#include "DiscIO/VolumeDisc.h"
|
||||
#include "DiscIO/WIABlob.h"
|
||||
#include "DolphinTool/Command.h"
|
||||
|
||||
@ -23,8 +20,8 @@ public:
|
||||
|
||||
private:
|
||||
std::optional<DiscIO::WIARVZCompressionType>
|
||||
ParseCompressionTypeString(const std::string compression_str);
|
||||
std::optional<DiscIO::BlobType> ParseFormatString(const std::string format_str);
|
||||
ParseCompressionTypeString(const std::string& compression_str);
|
||||
std::optional<DiscIO::BlobType> ParseFormatString(const std::string& format_str);
|
||||
};
|
||||
|
||||
} // namespace DolphinTool
|
||||
|
Reference in New Issue
Block a user