Skip to content
This repository has been archived by the owner on Apr 25, 2022. It is now read-only.

Commit

Permalink
dec/wendy-bell/arc: rename to dec/cyberworks/arc
Browse files Browse the repository at this point in the history
  • Loading branch information
rr- committed Sep 16, 2016
1 parent 906b934 commit 7a3dd43
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion GAMELIST.js
Original file line number Diff line number Diff line change
Expand Up @@ -3278,7 +3278,7 @@ var games = [
vndb: 17061,
fmt: {archives: ['arc'], gfx: ['png'], audio: ['ogg']},
info: 'arc_unpacker should be used on Arc01-03.dat. Arc04-06.dat contain only raw data, which is extracted using Arc01-03.dat.',
args: ['--dec=wendy-bell/arc --plugin=zoku-etsuraku']},
args: ['--dec=cyberworks/arc --plugin=zoku-etsuraku']},

{ dev: 'Purple Software',
date: '2016-07-29',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "dec/wendy_bell/arc_archive_decoder.h"
#include "dec/cyberworks/arc_archive_decoder.h"
#include <map>
#include "algo/pack/lzss.h"
#include "algo/ptr.h"
Expand All @@ -8,7 +8,7 @@
#include "virtual_file_system.h"

using namespace au;
using namespace au::dec::wendy_bell;
using namespace au::dec::cyberworks;

static const std::map<std::string, std::vector<std::string>>
toc_to_data_file_name_map =
Expand Down Expand Up @@ -278,4 +278,4 @@ std::unique_ptr<io::File> ArcArchiveDecoder::read_file_impl(
return ret;
}

static auto _ = dec::register_decoder<ArcArchiveDecoder>("wendy-bell/arc");
static auto _ = dec::register_decoder<ArcArchiveDecoder>("cyberworks/arc");
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

namespace au {
namespace dec {
namespace wendy_bell {
namespace cyberworks {

enum class ImageParameter : int
{
Expand Down

0 comments on commit 7a3dd43

Please sign in to comment.