Skip to content

Commit

Permalink
Remove unused db_done
Browse files Browse the repository at this point in the history
  • Loading branch information
devnoname120 committed Sep 1, 2018
1 parent 232083c commit 1f54827
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/vhbb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,11 @@ int main() {
// FIXME Don't crash if network not available, see
// https://bitbucket.org/xerpi/vita-ftploader/src/87ef1d13a8aaf092f376cbf2818a22cd0e481fd6/plugin/main.c?at=master&fileviewer=file-view-default#main.c-155


std::atomic_bool db_done{false};
std::atomic_bool *db_done_ptr = &db_done;

SceUID thid_db = sceKernelCreateThread(
"db_thread", (SceKernelThreadEntry)FetchLoadIcons, 0x40, 0x20000, 0,
0, NULL);
sceKernelStartThread(thid_db, sizeof(&db_done_ptr), &db_done_ptr);
sceKernelStartThread(thid_db, 0, nullptr);

Input input;

Expand Down

0 comments on commit 1f54827

Please sign in to comment.