Compare commits
2 Commits
5a83381ae1
...
d4ce6ab9ec
Author | SHA1 | Date | |
---|---|---|---|
|
d4ce6ab9ec | ||
|
24b417c287 |
2
.gitignore
vendored
2
.gitignore
vendored
@ -4,6 +4,8 @@
|
||||
!*/
|
||||
!bin/*
|
||||
!Makefile
|
||||
!LICENSE
|
||||
!COPYING
|
||||
|
||||
**/*.exe
|
||||
**/*.html
|
||||
|
@ -22,6 +22,9 @@
|
||||
#define PACKAGE_EXTENSION "btw"
|
||||
|
||||
|
||||
static void pack_contents_modified(char const *path, enum FilewatchAction action);
|
||||
|
||||
|
||||
static SDL_sem *opengl_load_semaphore;
|
||||
|
||||
|
||||
@ -308,6 +311,8 @@ static void resolve_pack_dependencies(const char *pack_name) {
|
||||
if (!PHYSFS_mount(dep_source_path, "/", true))
|
||||
CRY("Cannot load pack", "Nothing is given to work with");
|
||||
|
||||
filewatch_add_directory(dep_source_path, &pack_contents_modified);
|
||||
|
||||
log_info("Pack loaded: %s\n", dep_source.u.s);
|
||||
|
||||
SDL_free(dep_source.u.s);
|
||||
|
22
third-party/tomlc99/LICENSE
vendored
Normal file
22
third-party/tomlc99/LICENSE
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) CK Tan
|
||||
https://github.com/cktan/tomlc99
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
Loading…
Reference in New Issue
Block a user