diff --git a/Common-Issues.md b/Common-Issues.md index d8230a0..710957a 100644 --- a/Common-Issues.md +++ b/Common-Issues.md @@ -3,7 +3,7 @@ * If you have encountered such an error: `/path/to/citra/externals/ does not contain a CMakeLists.txt file.`, while configuring in CMake, it means you forgot to add `--recursive` when `git clone`. You can fix it by the following commands to obtain all submodules: git submodule init - git submodule update + git submodule update --recursive ### Building for Windows ---