Skip to content

Commit

Permalink
fix include path on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
MrSapps committed Apr 16, 2017
1 parent f385232 commit e8c8102
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions tools/data_tool/sound_resources_dumper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,47 +66,47 @@

const char* kSeqAePc[] =
{
#include "seq_rip\AePc.txt"
#include "seq_rip/AePc.txt"
};

const char* kSeqAePcDemo[] =
{
#include "seq_rip\AePcDemo.txt"
#include "seq_rip/AePcDemo.txt"
};

const char* kSeqAePsxCd1[] =
{
#include "seq_rip\AePsxCd1.txt"
#include "seq_rip/AePsxCd1.txt"
};

const char* kSeqAePsxCd2[] =
{
#include "seq_rip\AePsxCd2.txt"
#include "seq_rip/AePsxCd2.txt"
};

const char* kSeqAePsxDemo[] =
{
#include "seq_rip\AePsxDemo.txt"
#include "seq_rip/AePsxDemo.txt"
};

const char* kSeqAoPc[] =
{
#include "seq_rip\AoPc.txt"
#include "seq_rip/AoPc.txt"
};

const char* kSeqAoPcDemo[] =
{
#include "seq_rip\AoPcDemo.txt"
#include "seq_rip/AoPcDemo.txt"
};

const char* kSeqAoPsx[] =
{
#include "seq_rip\AoPsx.txt"
#include "seq_rip/AoPsx.txt"
};

const char* kSeqAoPsxDemo[] =
{
#include "seq_rip\AoPsxDemo.txt"
#include "seq_rip/AoPsxDemo.txt"
};

#define array_size(x) sizeof(x) / sizeof(x[0])
Expand Down

0 comments on commit e8c8102

Please sign in to comment.