Skip to content
This repository was archived by the owner on Jul 27, 2020. It is now read-only.

Commit e7639ed

Browse files
author
GeneralGuy4872
committed
push to sync computers
1 parent 46e21e0 commit e7639ed

19 files changed

+370
-244
lines changed

.gitattributes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,13 @@ core.autocrlf=false
77

88
*.c = linguist-language=C
99
*.h = linguist-language=C
10+
*.ch = linguist-language=C
1011
*.cc = linguist-language=C++
1112
*.hh = linguist-language=C++
13+
*.cchh = linguist-language=C++
14+
*.C = linguist-language=C++
15+
*.H = linguist-language=C++
16+
*.CH = linguist-language=C++
1217
*.m = linguist-language=Objective-C
1318
*.mm = linguist-language=Objective-C++
1419
*.xs = linguist-language=XS

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,8 @@ Doc Recommends:
114114
NEWS (and Olds)
115115
---------------
116116

117+
Mixed line endings are intentional.
118+
117119
As of 28/10/2019, major changes to some of the oldest portions of the
118120
outline are underway. these changes need to be propogated through the
119121
entire project, and will result in major inconsistancies until finished.

src/NotesOnCompiling

Lines changed: 0 additions & 18 deletions
This file was deleted.

src/baserender.messy

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,20 @@ enttyp__normalrender (int yzindex,int cullplane) {
22
struct enttyp * next_ent_ptr = ROOM->ent_ptr;
33
while (next_ent_ptr != NULL) {
44
if (raycast__visabledefault(next_ent_ptr->pos,cullplane) {
5-
basentyp * basentity = &(montable[next_ent_ptr->race[0]->table][next_ent_ptr->race[0]->race]);
5+
basentyp * basentity = (next_ent_ptr->race->poly == NULL) ?
6+
montable[
7+
next_ent_ptr->race->base[
8+
next_ent_ptr->race->swap
9+
]->table
10+
][
11+
next_ent_ptr->race[
12+
next_ent_ptr->race->swap
13+
]->race
14+
] : montable[
15+
next_ent_ptr->race->poly->table
16+
][
17+
next_ent_ptr->race->poly->race
18+
];
619
baseclasstyp * baseclass = next_ent_ptr->class.notnull ? &(classtable[next_ent_ptr->class.role][next_ent_ptr->class.class][next_ent_ptr->class.mastery]) : NULL;
720
char16_t this_sprite;
821
attr_t this_attr;

src/class_cleric.csv

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/class_fighter.csv

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/class_magic_user.csv

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/class_rogue.csv

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/gemstones.csv

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/legend.csv

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)