BitMap: Change the size param to the number of entries (bits)

This commit is contained in:
Dr. Chat
2015-12-27 13:33:26 -06:00
committed by Ben Vanik
parent eee0bb070c
commit d4da8cab4e
3 changed files with 15 additions and 16 deletions

View File

@@ -80,7 +80,7 @@ KernelState::KernelState(Emulator* emulator)
pib->unk_54 = pib->unk_58 = 0;
// Hardcoded maximum of 2048 TLS slots.
tls_bitmap_.Resize(64 * 4);
tls_bitmap_.Resize(2048);
xam::AppManager::RegisterApps(this, app_manager_.get());
}