missing include, do not use fset

This commit is contained in:
Enno Rehling 2018-07-16 10:53:12 +02:00
parent 36b7104ce3
commit 22d0fe5693
3 changed files with 2 additions and 2 deletions

BIN
src/.DS_Store vendored Normal file

Binary file not shown.

View File

@ -62,13 +62,13 @@ int autostudy_init(scholar scholars[], int max_scholars, region *r)
static void teaching(scholar *s, int n) {
assert(n <= s->u->number);
s->learn += n;
fset(s->u, UFL_LONGACTION);
s->u->flags |= UFL_LONGACTION;
}
static void learning(scholar *s, int n) {
assert(n <= s->u->number);
s->learn += n;
fset(s->u, UFL_LONGACTION);
s->u->flags |= UFL_LONGACTION;
}
void autostudy_run(scholar scholars[], int nscholars)

BIN
src/util/.DS_Store vendored Normal file

Binary file not shown.