Changeset 853 for cpp/frams/genetics/f4
- Timestamp:
- 02/15/19 03:09:31 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/genetics/f4/f4_general.cpp
r830 r853 1 1 // This file is a part of Framsticks SDK. http://www.framsticks.com/ 2 // Copyright (C) 1999-201 8Maciej Komosinski and Szymon Ulatowski.2 // Copyright (C) 1999-2019 Maciej Komosinski and Szymon Ulatowski. 3 3 // See LICENSE.txt for details. 4 4 … … 300 300 } 301 301 } 302 /* no break */302 [[fallthrough]]; 303 303 case '#': 304 304 { … … 522 522 break; 523 523 } 524 524 wait_link: 525 525 { 526 526 // wait for other neurons to develop … … 537 537 gcur = gcur->child; 538 538 } 539 539 break; 540 540 case ':': 541 541 { … … 1624 1624 if (root->child) 1625 1625 { 1626 char* buf = (char*)malloc(300);1627 DB(printf("(%d) ", root->child->count());)1628 buf[0] = 0;1629 root->child->sprintAdj(buf);1630 DB(printf("%s\n", buf);)1631 free(buf);1626 char* buf = (char*)malloc(300); 1627 DB(printf("(%d) ", root->child->count());) 1628 buf[0] = 0; 1629 root->child->sprintAdj(buf); 1630 DB(printf("%s\n", buf);) 1631 free(buf); 1632 1632 } 1633 1633 )
Note: See TracChangeset
for help on using the changeset viewer.