mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2026-06-03 05:35:01 -06:00
15 lines
423 B
C++
15 lines
423 B
C++
// Copyright Citra Emulator Project / Azahar Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "citra_room/citra_room.h"
|
|
#include "common/detached_tasks.h"
|
|
#include "common/scope_exit.h"
|
|
|
|
int main(int argc, char* argv[]) {
|
|
Common::DetachedTasks detached_tasks;
|
|
SCOPE_EXIT({ detached_tasks.WaitForAllTasks(); });
|
|
|
|
LaunchRoom(argc, argv, false);
|
|
}
|