mirror of
https://gitlab.com/dosowisko.net/libsuperderpy.git
synced 2024-12-04 08:18:00 +01:00
updated .gitignore, code-cosmetics
This commit is contained in:
parent
977a03db1e
commit
a4ec09d9cd
2 changed files with 20 additions and 7 deletions
23
.gitignore
vendored
23
.gitignore
vendored
|
@ -1,8 +1,19 @@
|
|||
*~
|
||||
/build*
|
||||
/stuff
|
||||
/CMakeLists.txt.user
|
||||
/doc
|
||||
allegro.log
|
||||
build
|
||||
run
|
||||
others
|
||||
SuperDerpy.ini
|
||||
sync*
|
||||
*.user
|
||||
*~
|
||||
*#
|
||||
._*
|
||||
*.autosave
|
||||
*.save
|
||||
*.save.*
|
||||
.directory
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
|
|
|
@ -194,6 +194,8 @@ SYMBOL_EXPORT void FatalError(struct Game* game, bool exit, char* format, ...) {
|
|||
va_end(vl);
|
||||
PrintConsole(game, text);
|
||||
|
||||
// TODO: synchronize with loading thread
|
||||
|
||||
ALLEGRO_TRANSFORM trans;
|
||||
al_identity_transform(&trans);
|
||||
al_use_transform(&trans);
|
||||
|
@ -315,7 +317,7 @@ SYMBOL_EXPORT char* GetDataFilePath(struct Game* game, char* filename) {
|
|||
|
||||
#ifdef ALLEGRO_ANDROID
|
||||
char origfn[255] = "android/";
|
||||
strcat(origfn, filename);
|
||||
strncat(origfn, filename, 246);
|
||||
|
||||
result = TestDataFilePath(game, origfn);
|
||||
if (result) {
|
||||
|
|
Loading…
Reference in a new issue