1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-23 11:13:19 +01:00

Merge pull request #874 from devmapal/master

Fixes compilation error
This commit is contained in:
Alexandro Sánchez Bach 2014-11-24 22:15:08 +01:00
commit a8c9898253

View File

@ -463,8 +463,8 @@ namespace loader
be_t<u32>::make(BLR())
};
auto& tbl = vm::get().alloc<tbl_item>(stub->s_imports);
auto& dst = vm::get().alloc<stub_data_t>(stub->s_imports);
const auto& tbl = vm::get().alloc<tbl_item>(stub->s_imports);
const auto& dst = vm::get().alloc<stub_data_t>(stub->s_imports);
for (u32 i = 0; i < stub->s_imports; ++i)
{