
you may have to update submodules and change submodule URL worst case. to do so, execute the following on your next git pull: ``` git submodule update --init extern/SDL ``` then check whether the remote URL is correct: ``` cd extern/SDL git remote get-url origin ``` if it is NOT https://github.com/tildearrow/SDL.git, go back to the parent directory, and change the submodule URL by executing: ``` git submodule set-url extern/SDL https://github.com/tildearrow/SDL.git ```
11 lines
288 B
Plaintext
11 lines
288 B
Plaintext
[submodule "extern/SDL"]
|
|
path = extern/SDL
|
|
url = https://github.com/tildearrow/SDL.git
|
|
branch = release-2.32.x
|
|
[submodule "extern/fmt"]
|
|
path = extern/fmt
|
|
url = https://github.com/fmtlib/fmt.git
|
|
[submodule "extern/adpcm"]
|
|
path = extern/adpcm
|
|
url = https://github.com/superctr/adpcm
|