From 666ed4d3142034cf45fedd7a5273f701757e6450 Mon Sep 17 00:00:00 2001 From: applestash Date: Sat, 20 Sep 2014 22:58:37 +1000 Subject: [PATCH] makerom: fix bug removed remaining reference to wchar_t in romfs_gen.c --- makerom/romfs_gen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makerom/romfs_gen.c b/makerom/romfs_gen.c index a2157ed..5f41801 100644 --- a/makerom/romfs_gen.c +++ b/makerom/romfs_gen.c @@ -18,7 +18,7 @@ int PopulateRomfs(romfs_buildctx *ctx); void BuildRomfsHeader(romfs_buildctx *ctx); void BuildIvfcHeader(romfs_buildctx *ctx); void GenIvfcHashTree(romfs_buildctx *ctx); -u32 CalcPathHash(u32 parent,wchar_t * path,u32 start,u32 length); +u32 CalcPathHash(u32 parent, fs_romfs_char* path, u32 start, u32 length); int PrepareBuildRomFsBinary(ncch_settings *ncchset, romfs_buildctx *ctx)